We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing an empty string, or a string that only contains whitespace, provokes a
ParserSyntaxError: Unexpected end of token stream at 0.
I see a ParserSyntaxError("Empty token flow.") in EndToken#nud(), wasn't that intended instead?
ParserSyntaxError("Empty token flow.")
EndToken#nud()
This case should probably have it own error class.
The text was updated successfully, but these errors were encountered:
Split ParserSyntaxError into MissingTokens and InvalidToken (See #3).
96d475f
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
No branches or pull requests
Parsing an empty string, or a string that only contains whitespace, provokes a
I see a
ParserSyntaxError("Empty token flow.")
inEndToken#nud()
, wasn't that intended instead?This case should probably have it own error class.
The text was updated successfully, but these errors were encountered: