aboutsummaryrefslogtreecommitdiff
path: root/src/yuescript/yue_parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/yuescript/yue_parser.cpp')
-rw-r--r--src/yuescript/yue_parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuescript/yue_parser.cpp b/src/yuescript/yue_parser.cpp
index 44baced..fccb6fb 100644
--- a/src/yuescript/yue_parser.cpp
+++ b/src/yuescript/yue_parser.cpp
@@ -547,7 +547,7 @@ YueParser::YueParser() {
547 547
548 Assign = '=' >> space >> Seperator >> ( 548 Assign = '=' >> space >> Seperator >> (
549 With | If | Switch | TableBlock | 549 With | If | Switch | TableBlock |
550 Exp >> *(space >> set(",;") >> space >> Exp) 550 (SpreadListExp | Exp) >> *(space >> set(",;") >> space >> (SpreadListExp | Exp))
551 ); 551 );
552 552
553 UpdateOp = 553 UpdateOp =