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
Rules such as
op5 -> Op // %nonassoc "=" "<>" "<" ">" "<=" ">=" = "=" { Op::Eq } / "<>" { Op::Ne } / "<=" { Op::Le } / ">=" { Op::Ge } / "<" { Op::Lt } / ">" { Op::Gt }
are not correctly compiled, because the line comment affects the rest of generated Rust code. This phenomenon is observed in peg v0.5.0.
peg v0.5.0
The text was updated successfully, but these errors were encountered:
6bc4716
Thanks for noticing and reporting this!
Sorry, something went wrong.
No branches or pull requests
Rules such as
are not correctly compiled, because the line comment affects the rest of generated Rust code.
This phenomenon is observed in
peg v0.5.0
.The text was updated successfully, but these errors were encountered: