More resolved data in compound exprs, Fix invalid generation of compound exprs,

This commit is contained in:
Krzosa Karol
2022-06-14 21:41:41 +02:00
parent 58e919ef69
commit 7f5471de08
4 changed files with 22 additions and 6 deletions

View File

@@ -86,6 +86,9 @@ struct Ast_Call_Item: Ast_Expr{
Ast_Atom *name; // for calls only name, for compounds name | index
Ast_Expr *item;
Ast_Expr *index;
Intern_String resolved_name;
S64 resolved_index;
};
struct Ast_Call: Ast_Expr{