Any semantics, lvalue allocates on stack

This commit is contained in:
Krzosa Karol
2022-10-09 23:42:02 +02:00
parent 9ad2da03c8
commit 13f2f20ea6
5 changed files with 44 additions and 18 deletions

View File

@@ -63,6 +63,7 @@ enum{
AST_FLAG = bit_flag(11),
AST_VAR_IS_CONST = bit_flag(12),
AST_OPERATOR_OVERLOAD = bit_flag(13),
AST_IS_LVALUE = bit_flag(14),
};
struct Ast{