We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Parser::parse_nested_block
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
Hi,
The docs of Parser::parse_nested_block say at the end:
The result is overridden to Err(()) if the closure leaves some input before that point.
However, it seems an UnexpectedToken error is returned:
UnexpectedToken
ParseError { kind: Basic( UnexpectedToken( Delim( '=', ), ), ), location: SourceLocation { line: 203, column: 6, }, },
That also make more sense, I think.
The text was updated successfully, but these errors were encountered:
The same is probably true for parse_entirely, and other methods that say the above.
Sorry, something went wrong.
#372 Fixed this aiui
Further clarifications in docs for what errors are returned.
e07f19e
Based on #281
Further clarifications in docs for what errors are returned. (#380)
8f13fc9
No branches or pull requests
Hi,
The docs of Parser::parse_nested_block say at the end:
However, it seems an
UnexpectedToken
error is returned:That also make more sense, I think.
The text was updated successfully, but these errors were encountered: