aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/moon_ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/moon_ast.h')
-rw-r--r--MoonParser/moon_ast.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/MoonParser/moon_ast.h b/MoonParser/moon_ast.h
index c4f20c3..5d38905 100644
--- a/MoonParser/moon_ast.h
+++ b/MoonParser/moon_ast.h
@@ -247,7 +247,8 @@ AST_END(CompInner)
247class TableBlock_t; 247class TableBlock_t;
248 248
249AST_NODE(Assign, "Assign"_id) 249AST_NODE(Assign, "Assign"_id)
250 ast_ptr<ast_node> value; // With_t | If_t | Switch_t | TableBlock_t | ExpListLow_t 250 ast_ptr<Seperator_t> sep;
251 ast_sel_list<With_t, If_t, Switch_t, TableBlock_t, Exp_t> values;
251AST_END(Assign) 252AST_END(Assign)
252 253
253AST_LEAF(update_op, "update_op"_id) 254AST_LEAF(update_op, "update_op"_id)