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
It's a mild pain that a lexer rule like:
"P1" return 'P1'
conflicts with a grammar rule like:
P1: 'P1' ;
The symbols_ map would show the conflict:
symbols_
symbols_: {"error":2,…,"P1":4,"EOF":5,"P1":7,…,"$accept":0,"$end":1},
but in fact it fails during compilation so it doesn't get as far as generating such a conflicting map.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's a mild pain that a lexer rule like:
conflicts with a grammar rule like:
The
symbols_
map would show the conflict:but in fact it fails during compilation so it doesn't get as far as generating such a conflicting map.
The text was updated successfully, but these errors were encountered: