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
Whitespace and comments are consumed and emitted by the lexer, but not mandatory between some tokens. This means that, for example, the following text:
This probably isn't much of a problem as in general sequences of tokens without whitespace between them aren't valid in any parser rules anywhere this could appear anyway, but it would probably be better if the input text failed at the lexer stage rather than the parser when mandatory whitespace is missing.
The text was updated successfully, but these errors were encountered:
Whitespace and comments are consumed and emitted by the lexer, but not mandatory between some tokens. This means that, for example, the following text:
gets converted to two valid tokens:
This probably isn't much of a problem as in general sequences of tokens without whitespace between them aren't valid in any parser rules anywhere this could appear anyway, but it would probably be better if the input text failed at the lexer stage rather than the parser when mandatory whitespace is missing.
The text was updated successfully, but these errors were encountered: