Skip to content

Commit abdcf4a

Browse files
changed regex in parser definition for command parameters
1 parent 2c17edf commit abdcf4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/parser.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ stepline
5252
= !"--" string __ { return { "stepline": text()}; }
5353

5454
string "string"
55-
= [a-zA-Z0-9.(),;:/-_-" ]+ { return text(); }
55+
= [^\r\n]+ { return text(); }
5656

5757
_ "whitespace"
5858
= [ \t]*

0 commit comments

Comments
 (0)