aboutsummaryrefslogtreecommitdiff
path: root/src/MoonP/moon_parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/MoonP/moon_parser.cpp')
-rw-r--r--src/MoonP/moon_parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MoonP/moon_parser.cpp b/src/MoonP/moon_parser.cpp
index 394ce50..41db324 100644
--- a/src/MoonP/moon_parser.cpp
+++ b/src/MoonP/moon_parser.cpp
@@ -491,7 +491,7 @@ MoonParser::MoonParser() {
491 }); 491 });
492 492
493 KeyValueList = KeyValue >> *(sym(',') >> KeyValue); 493 KeyValueList = KeyValue >> *(sym(',') >> KeyValue);
494 KeyValueLine = CheckIndent >> (KeyValueList >> -sym(',') | TableBlockIndent); 494 KeyValueLine = CheckIndent >> (KeyValueList >> -sym(',') | TableBlockIndent | Space >> expr('*') >> Exp);
495 495
496 FnArgDef = (Variable | SelfName) >> -(sym('=') >> Space >> Exp); 496 FnArgDef = (Variable | SelfName) >> -(sym('=') >> Space >> Exp);
497 497