diff options
Diffstat (limited to 'ast.h')
| -rw-r--r-- | ast.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -100,7 +100,7 @@ struct type_ast_s { } VarTypeAST; struct { type_ast_t *pointed; - bool is_stack:1; + bool is_view:1; } PointerTypeAST; struct { type_ast_t *item; @@ -128,7 +128,7 @@ typedef enum { TextLiteral, TextJoin, PrintStatement, Declare, Assign, BinaryOp, UpdateAssign, - Not, Negative, HeapAllocate, StackReference, + Not, Negative, HeapAllocate, Min, Max, Array, Channel, Set, Table, TableEntry, Comprehension, FunctionDef, Lambda, @@ -195,7 +195,7 @@ struct ast_s { } BinaryOp, UpdateAssign; struct { ast_t *value; - } Not, Negative, HeapAllocate, StackReference; + } Not, Negative, HeapAllocate; struct { ast_t *lhs, *rhs, *key; } Min, Max; |
