aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ast.h b/ast.h
index 4b8e03dc..fada01d4 100644
--- a/ast.h
+++ b/ast.h
@@ -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;