diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-02-24 10:50:16 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-02-24 10:50:16 -0500 |
commit | de339d1c307d16faba52ece22bcc9c24d3789868 (patch) | |
tree | 3c87a9f660209355f8cb92c70013c96d7b62590a | |
parent | b206d88474670956035ff25d5b392fb2925b015d (diff) |
accessing struct parameters with .
-rw-r--r-- | test.toc | 6 | ||||
-rw-r--r-- | types.c | 29 |
2 files changed, 27 insertions, 8 deletions
@@ -2,10 +2,10 @@ io ::= nms { #include "std/io.toc"; }; -p ::= struct(x::Type) { - y:int; +p ::= struct(x::Type,y::=3) { + b:int; }; main ::= fn() { z:p(int); -for z := 1..100 {z:=12;} +x:[z.y]z.x; };
\ No newline at end of file @@ -2337,12 +2337,31 @@ static bool types_expr(Typer *tr, Expression *e) { e->binary.dot.field = f; } } - if (!is_field) { - char *member = ident_to_str(rhs->ident); - char *struc = type_to_str(struct_type); - err_print(e->where, "%s is not a member of structure %s.", member, struc); - return false; + Declaration *param = NULL; + int ident_idx; + arr_foreach(struct_type->struc->params, Declaration, p) { + ident_idx = 0; + arr_foreach(p->idents, Identifier, ident) { + if (ident_eq(*ident, rhs->ident)) { + param = p; + goto dblbreak_dot; + } + ++ident_idx; + } + } + dblbreak_dot: + if (!param) { + char *member = ident_to_str(rhs->ident); + char *struc = type_to_str(struct_type); + err_print(e->where, "%s is not a member of structure %s.", member, struc); + return false; + } + /* replace with parameter value */ + e->kind = EXPR_VAL; + e->val = *decl_val_at_index(param, ident_idx); + *t = *decl_type_at_index(param, ident_idx); + break; } } else if (struct_type->kind == TYPE_SLICE || struct_type->kind == TYPE_ARR) { if (!ident_eq_str(rhs->ident, "len")) { |