diff options
Diffstat (limited to 'src/yuescript/yue_parser.cpp')
-rwxr-xr-x | src/yuescript/yue_parser.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/yuescript/yue_parser.cpp b/src/yuescript/yue_parser.cpp index 94ce550..31a2560 100755 --- a/src/yuescript/yue_parser.cpp +++ b/src/yuescript/yue_parser.cpp | |||
@@ -328,19 +328,13 @@ YueParser::YueParser() { | |||
328 | 328 | ||
329 | update_op = | 329 | update_op = |
330 | expr("..") | | 330 | expr("..") | |
331 | expr("+") | | ||
332 | expr("-") | | ||
333 | expr("*") | | ||
334 | expr("//") | | 331 | expr("//") | |
335 | expr("/") | | ||
336 | expr("%") | | ||
337 | expr("or") | | 332 | expr("or") | |
338 | expr("and") | | 333 | expr("and") | |
339 | expr("&") | | ||
340 | expr("|") | | ||
341 | expr(">>") | | 334 | expr(">>") | |
342 | expr("<<") | | 335 | expr("<<") | |
343 | expr("??"); | 336 | expr("??") | |
337 | set("+-*/%&|"); | ||
344 | 338 | ||
345 | Update = Space >> update_op >> expr("=") >> Exp; | 339 | Update = Space >> update_op >> expr("=") >> Exp; |
346 | 340 | ||