summaryrefslogtreecommitdiff
path: root/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'types.c')
-rw-r--r--types.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/types.c b/types.c
index b23fbcd..98a47dd 100644
--- a/types.c
+++ b/types.c
@@ -423,16 +423,10 @@ static bool types_expr(Typer *tr, Expression *e) {
tr->ret_type = t->fn.types[0];
}
tr->can_ret = true;
- arr_foreach(f->params, Declaration, decl)
- add_ident_decls(&f->body, decl);
- arr_foreach(f->ret_decls, Declaration, decl)
- add_ident_decls(&f->body, decl);
+ fn_enter(f);
bool block_success = true;
block_success = types_block(tr, &e->fn.body);
- arr_foreach(f->params, Declaration, decl)
- remove_ident_decls(&f->body, decl);
- arr_foreach(f->ret_decls, Declaration, decl)
- remove_ident_decls(&f->body, decl);
+ fn_exit(f);
if (!block_success) {
success = false;
goto fn_ret;