You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Again similar definition of GOLD grammar terminal: Identifier = {Letter}{Digit}+
is transformed to SequenceParser with not null Separator.
Thus input "a 1" matches this terminal.
In code GoldGrammar.cs - line 218 - for every sequences (RegExp included) is Separator defined: var seq = new SequenceParser(parsers) { Separator = sep };
Thanks,
Tomas
The text was updated successfully, but these errors were encountered:
Again similar definition of GOLD grammar terminal:
Identifier = {Letter}{Digit}+
is transformed to SequenceParser with not null Separator.
Thus input "a 1" matches this terminal.
In code GoldGrammar.cs - line 218 - for every sequences (RegExp included) is Separator defined:
var seq = new SequenceParser(parsers) { Separator = sep };
Thanks,
Tomas
The text was updated successfully, but these errors were encountered: