diff options
Diffstat (limited to 'src/lower.c')
-rw-r--r-- | src/lower.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lower.c b/src/lower.c index 4b9fae9..9f806f3 100644 --- a/src/lower.c +++ b/src/lower.c @@ -130,7 +130,7 @@ static int lower_type_callable(struct type *type) * exact semantics, but for now this is good enough. */ printf("std::function<void("); - if (lower_types(tcallable_args(type))) + if (lower_types(type->t0)) return -1; printf(")>"); @@ -161,7 +161,9 @@ static int lower_type(struct type *type) switch (type->k) { case TYPE_ID: printf("%s", tid_str(type)); return 0; case TYPE_CONSTRUCT: return lower_type_construct(type); - case TYPE_CALLABLE: return lower_type_callable(type); + case TYPE_CLOSURE: return lower_type_callable(type); + case TYPE_FUNC_PTR: return lower_type_callable(type); + case TYPE_PURE_CLOSURE: return lower_type_callable(type); case TYPE_REF: return lower_type_ref(type); case TYPE_PTR: return lower_type_ptr(type); default: @@ -245,6 +247,7 @@ static int lower_expr(struct state *state, struct ast *expr) case AST_CONST_CHAR: printf("'%c'", (char)char_val(expr)); break; case AST_INIT: return lower_init(state, expr); case AST_CLOSURE: return lower_closure(state, expr); + case AST_REF: return lower_expr(state, ref_base(expr)); default: internal_error("missing expr lowering"); return -1; @@ -341,6 +344,7 @@ static int lower_statement(struct state *state, struct ast *stmt) case AST_LET: return lower_let(state, stmt); case AST_CALL: return lower_call(state, stmt); case AST_IF: return lower_if(state, stmt); + case AST_EMPTY: return 0; default: internal_error("missing statement lowering"); return -1; |