diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2019-12-06 18:41:49 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2019-12-06 18:41:49 -0500 |
commit | 651d8e3214f198524c254b560defa146cf06aadf (patch) | |
tree | 93d17669a1cdb6f2c13269616d92a91b85abc10d | |
parent | d78f0258edd3259bfdba29c99800683c27b1f48c (diff) |
cleanup
-rw-r--r-- | main.c | 4 | ||||
-rw-r--r-- | test.toc | 1 | ||||
-rw-r--r-- | types.c | 41 |
3 files changed, 19 insertions, 27 deletions
@@ -1,8 +1,8 @@ /* TODO: -check fn(x :: int, y := x) (run + compile) check fn(x :: int) y := x (run + compile) -check arr @ compile +make sure you can't have a tuple parameter (check const tuple params) +check arr.toc's Arr works @ compile time new version of copy_val for copying types?? there are probably places where we enter a function and never exit (in typing?) if there's an error @@ -12,7 +12,6 @@ main ::= fn() { puti(f(7)); puti(f(3,4)); -// TODO: semiconst breaks this for some reason f ::= fn(x :: int, y := x) int { y }; r ::= f(3); @@ -1168,25 +1168,10 @@ static bool types_expr(Typer *tr, Expression *e) { /* keep track of the declaration */ Declaration *param_decl = fn->params; size_t ident_idx = 0; - for (size_t i = 0; i < arr_len(fn_type->types)-1; i++) { + size_t i = 0; + for (i = 0; i < nparams; i++) { bool should_be_evald = arg_is_const(&new_args[i], fn_type->constness[i]); - if (!params_set[i] && (param_decl->flags & DECL_HAS_EXPR)) { - /* create copy of default arg */ - Value default_arg; - if (!types_expr(tr, ¶m_decl->expr)) - return false; - if (!eval_expr(tr->evalr, ¶m_decl->expr, &default_arg)) { - return false; - } - - - new_args[i].kind = EXPR_VAL; - new_args[i].flags = param_decl->expr.flags; - new_args[i].type = param_decl->expr.type; - copy_val(tr->allocr, &new_args[i].val, &default_arg, ¶m_decl->expr.type); - } else assert(params_set[i]); - if (should_be_evald) { Value *arg_val = typer_arr_add(tr, &table_index.tuple); if (!eval_expr(tr->evalr, &new_args[i], arg_val)) { @@ -1221,19 +1206,27 @@ static bool types_expr(Typer *tr, Expression *e) { ident_idx++; if (ident_idx >= arr_len(param_decl->idents)) { ident_idx = 0; - /* TODO: remove decls on failure */ - /* these are added for default arguments */ - add_ident_decls(&fn->body, param_decl, SCOPE_CHECK_REDECL); param_decl++; } } - arr_foreach(fn->params, Declaration, param) { - remove_ident_decls(&fn->body, param); - } /* type param declarations, etc */ if (!type_of_fn(tr, &fn_copy, e->where, &f->type, TYPE_OF_FN_IS_INSTANCE)) return false; - + + /* deal with default arguments */ + i = 0; + arr_foreach(fn->params, Declaration, param) { + arr_foreach(param->idents, Identifier, ident) { + if (!params_set[i]) { + assert(param->flags & DECL_HAS_EXPR); + assert(param->expr.kind == EXPR_VAL); /* this was done by type_of_fn */ + new_args[i] = param->expr; + /* make sure value is copied */ + copy_val(tr->allocr, &new_args[i].val, ¶m->expr.val, ¶m->expr.type); + } + i++; + } + } ret_type = f->type.fn.types; param_types = ret_type + 1; |