diff options
author | Li Jin <dragon-fly@qq.com> | 2019-09-19 01:01:11 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2019-09-19 01:01:11 +0800 |
commit | 42485c6f26b16900b228aeb73907fdbdd9ed17e0 (patch) | |
tree | 4ff846bf7159cd544c5a0ec177d5355a0b916871 /MoonParser/moon_ast.h | |
parent | ad0b9c911095b402159f51abe4d98a56d2335973 (diff) | |
download | yuescript-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.h | 3 |
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) | |||
247 | class TableBlock_t; | 247 | class TableBlock_t; |
248 | 248 | ||
249 | AST_NODE(Assign, "Assign"_id) | 249 | AST_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; | ||
251 | AST_END(Assign) | 252 | AST_END(Assign) |
252 | 253 | ||
253 | AST_LEAF(update_op, "update_op"_id) | 254 | AST_LEAF(update_op, "update_op"_id) |