-
-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
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
Fixed some panics in the lexer #242
Conversation
Is there something wrong with the |
Are you running the same version of rust as the CI? (rustc 1.41.0) ? |
Yeah I'm using 1.41.0. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just some changes to improve the error messages and make them more consistent
* Applied Requested Fixes * Gave `ParseError` a basic `Display` impl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
I went through and fixed some of the immediately obvious panics in the lexer, though more work still needs to be done. I removed all
unwrap
calls and replaced them withexpect
. I also madeparser_expr
return aResult<Expr, String>
and editedforward
andforward_val
accordingly.