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
For the following input:
%{ package parser %} %% input: '"'
yacc 1.5rc1 generate a code containing
var yyToknames = [...]string{ "$end", "error", "$unk", "'"'", }
The last line doesn't compile.
The 1.4 yacc doesn't generate a token name for '"' so there are no problems.
The text was updated successfully, but these errors were encountered:
Why 1.6? This is quite ugly (the tool generate code that doesn't compile, and it seems like a save one liner to fix it).
It seems quite a big degradation in a feature that the release notes doesn't even mention as changed.
Sorry, something went wrong.
The fix is trivial. I agree it belongs in 1.5 as it was a recent breaking change. CL coming.
CL https://golang.org/cl/13462 mentions this issue.
Thanks! (and sorry for not testing it earlier than rc1)
5468365
No branches or pull requests
For the following input:
yacc 1.5rc1 generate a code containing
The last line doesn't compile.
The 1.4 yacc doesn't generate a token name for '"' so there are no problems.
The text was updated successfully, but these errors were encountered: