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
--features peg/trace
I get this error when trying to run with cargo run --features peg/trace:
cargo run --features peg/trace
error[E0425]: cannot find value `min_prec` in this scope --> src/ast.rs:221:1 | 221 | / peg::parser! { 222 | | pub grammar parser() for [Token] { 223 | | rule ident() -> String= 224 | | [Token::Ident(s)] { s } / expected!("identifier") ... | 356 | | 357 | | } | |_^ not found in this scope
I stared at the code for a bit to try to help diagnose but I don't think my rust macro-fu is anywhere near up to the task, unfortunately.
The text was updated successfully, but these errors were encountered:
f05f348
Thanks for reporting! Added testing with trace in GitHub Actions and fixed another regression there that had been added since 0.7.
trace
Sorry, something went wrong.
Thanks for the quick turnaround! And thanks for the library too, it's great.
No branches or pull requests
I get this error when trying to run with
cargo run --features peg/trace
:I stared at the code for a bit to try to help diagnose but I don't think my rust macro-fu is anywhere near up to the task, unfortunately.
The text was updated successfully, but these errors were encountered: