From fb47c11bd942c83317f1f9a2e255535649401cbf Mon Sep 17 00:00:00 2001 From: Li Jin Date: Tue, 28 Jan 2020 00:41:53 +0800 Subject: Add multi-line comment support. Add escape new line symbol. Add back call syntax. --- src/MoonP/moon_ast.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/MoonP/moon_ast.cpp') diff --git a/src/MoonP/moon_ast.cpp b/src/MoonP/moon_ast.cpp index 8b8a674..f14fa74 100644 --- a/src/MoonP/moon_ast.cpp +++ b/src/MoonP/moon_ast.cpp @@ -34,6 +34,7 @@ AST_IMPL(ImportLiteral) AST_IMPL(ImportFrom) AST_IMPL(ImportAs) AST_IMPL(Import) +AST_IMPL(Backcall) AST_IMPL(ExpListLow) AST_IMPL(ExpList) AST_IMPL(Return) @@ -59,6 +60,7 @@ AST_IMPL(Assign) AST_IMPL(update_op) AST_IMPL(Update) AST_IMPL(BinaryOperator) +AST_IMPL(BackcallOperator) AST_IMPL(Assignable) AST_IMPL(AssignableChain) AST_IMPL(exp_op_value) -- cgit v1.2.3-55-g6feb