diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/yuescript/yue_compiler.cpp | 2 | ||||
-rwxr-xr-x | src/yuescript/yue_parser.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/yuescript/yue_compiler.cpp b/src/yuescript/yue_compiler.cpp index 7d7bf25..bc046af 100755 --- a/src/yuescript/yue_compiler.cpp +++ b/src/yuescript/yue_compiler.cpp | |||
@@ -60,7 +60,7 @@ using namespace parserlib; | |||
60 | 60 | ||
61 | typedef std::list<std::string> str_list; | 61 | typedef std::list<std::string> str_list; |
62 | 62 | ||
63 | const std::string_view version = "0.10.17"sv; | 63 | const std::string_view version = "0.10.18"sv; |
64 | const std::string_view extension = "yue"sv; | 64 | const std::string_view extension = "yue"sv; |
65 | 65 | ||
66 | class YueCompilerImpl { | 66 | class YueCompilerImpl { |
diff --git a/src/yuescript/yue_parser.cpp b/src/yuescript/yue_parser.cpp index 1f1b57c..ef414d4 100755 --- a/src/yuescript/yue_parser.cpp +++ b/src/yuescript/yue_parser.cpp | |||
@@ -322,6 +322,7 @@ YueParser::YueParser() { | |||
322 | expr("+") | | 322 | expr("+") | |
323 | expr("-") | | 323 | expr("-") | |
324 | expr("*") | | 324 | expr("*") | |
325 | expr("//") | | ||
325 | expr("/") | | 326 | expr("/") | |
326 | expr("%") | | 327 | expr("%") | |
327 | expr("or") | | 328 | expr("or") | |