aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/moon_ast.h
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2019-09-19 01:01:11 +0800
committerLi Jin <dragon-fly@qq.com>2019-09-19 01:01:11 +0800
commit42485c6f26b16900b228aeb73907fdbdd9ed17e0 (patch)
tree4ff846bf7159cd544c5a0ec177d5355a0b916871 /MoonParser/moon_ast.h
parentad0b9c911095b402159f51abe4d98a56d2335973 (diff)
downloadyuescript-42485c6f26b16900b228aeb73907fdbdd9ed17e0.tar.gz
yuescript-42485c6f26b16900b228aeb73907fdbdd9ed17e0.tar.bz2
yuescript-42485c6f26b16900b228aeb73907fdbdd9ed17e0.zip
spec/class.moon is done.
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)