aboutsummaryrefslogtreecommitdiff
path: root/src/MoonP/moon_ast.cpp
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2020-01-18 18:15:24 +0800
committerLi Jin <dragon-fly@qq.com>2020-01-18 18:15:24 +0800
commit8d1af508f4173e4af6a4ea98584c1a86619f6a20 (patch)
tree0264c4b01f1152d8114cf46aea6fd773276c0b01 /src/MoonP/moon_ast.cpp
parentf53ccb373efbf6f6f40284111df309e351c2c18f (diff)
downloadyuescript-8d1af508f4173e4af6a4ea98584c1a86619f6a20.tar.gz
yuescript-8d1af508f4173e4af6a4ea98584c1a86619f6a20.tar.bz2
yuescript-8d1af508f4173e4af6a4ea98584c1a86619f6a20.zip
fix Moonscript issue 122, add support for ? operator.
Diffstat (limited to 'src/MoonP/moon_ast.cpp')
-rw-r--r--src/MoonP/moon_ast.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/MoonP/moon_ast.cpp b/src/MoonP/moon_ast.cpp
index 0ccd0ed..f3fe31e 100644
--- a/src/MoonP/moon_ast.cpp
+++ b/src/MoonP/moon_ast.cpp
@@ -79,6 +79,7 @@ AST_IMPL(ColonChainItem)
79AST_IMPL(default_value) 79AST_IMPL(default_value)
80AST_IMPL(Slice) 80AST_IMPL(Slice)
81AST_IMPL(Invoke) 81AST_IMPL(Invoke)
82AST_IMPL(existential_op)
82AST_IMPL(TableLit) 83AST_IMPL(TableLit)
83AST_IMPL(TableBlock) 84AST_IMPL(TableBlock)
84AST_IMPL(class_member_list) 85AST_IMPL(class_member_list)