aboutsummaryrefslogtreecommitdiff
path: root/src/compile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-11-22 19:11:55 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-11-22 21:47:43 -0500
commitbb354d6d3626cdc0c2a1b802a954df244cd1facc (patch)
tree31c5c8c3f21db8706e1fc7f78194500e03d1780e /src/compile
parent0aeacfbd83b0afe8a8ea654bc1554b8d7d29e9b1 (diff)
Fixes for conditional expressions for optional types
Diffstat (limited to 'src/compile')
-rw-r--r--src/compile/conditionals.c15
-rw-r--r--src/compile/expressions.c4
2 files changed, 13 insertions, 6 deletions
diff --git a/src/compile/conditionals.c b/src/compile/conditionals.c
index caebdbde..64be29fa 100644
--- a/src/compile/conditionals.c
+++ b/src/compile/conditionals.c
@@ -126,17 +126,22 @@ Text_t compile_if_expression(env_t *env, ast_t *ast) {
}
type_t *true_type = get_type(truthy_scope, if_->body);
- type_t *false_type = get_type(falsey_scope, if_->else_body);
+ ast_t *else_body = if_->else_body;
+ if (else_body && else_body->tag == Block && Match(else_body, Block)->statements
+ && !Match(else_body, Block)->statements->next)
+ else_body = Match(else_body, Block)->statements->ast;
+ if (else_body == NULL || else_body->tag == None) else_body = WrapAST(ast, None, .type = true_type);
+ type_t *false_type = get_type(falsey_scope, else_body);
if (true_type->tag == AbortType || true_type->tag == ReturnType)
return Texts("({ ", decl_code, "if (", condition_code, ") ", compile_statement(truthy_scope, if_->body), "\n",
- compile(falsey_scope, if_->else_body), "; })");
+ compile(falsey_scope, else_body), "; })");
else if (false_type->tag == AbortType || false_type->tag == ReturnType)
- return Texts("({ ", decl_code, "if (!(", condition_code, ")) ", compile_statement(falsey_scope, if_->else_body),
+ return Texts("({ ", decl_code, "if (!(", condition_code, ")) ", compile_statement(falsey_scope, else_body),
"\n", compile(truthy_scope, if_->body), "; })");
else if (decl_code.length > 0)
return Texts("({ ", decl_code, "(", condition_code, ") ? ", compile(truthy_scope, if_->body), " : ",
- compile(falsey_scope, if_->else_body), ";})");
+ compile(falsey_scope, else_body), ";})");
else
return Texts("((", condition_code, ") ? ", compile(truthy_scope, if_->body), " : ",
- compile(falsey_scope, if_->else_body), ")");
+ compile(falsey_scope, else_body), ")");
}
diff --git a/src/compile/expressions.c b/src/compile/expressions.c
index 108bda80..130a267c 100644
--- a/src/compile/expressions.c
+++ b/src/compile/expressions.c
@@ -66,7 +66,9 @@ Text_t compile_empty(type_t *t) {
Text_t compile(env_t *env, ast_t *ast) {
switch (ast->tag) {
case None: {
- code_err(ast, "I can't figure out what this `none`'s type is!");
+ type_t *type = Match(ast, None)->type;
+ if (type == NULL) code_err(ast, "I can't figure out what this `none`'s type is!");
+ return compile_none(non_optional(type));
}
case Bool: return Match(ast, Bool)->b ? Text("yes") : Text("no");
case Var: {