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
This script
Assignment : @<Expression, Assignment: Assignment, ext: void> { Ident _ '=' _ Expect<Assignment> ast("assign" + ext) Expression ast("value") } ast_print(Assignment<Int>)
generates the error messages
'Assignment' requires assignment of generic argument 'Expression' 'Assignment' requires assignment of generic argument 'Expression'
When, according to the error message hint, the script is changed into this version:
Assignment : @<Expression, Assignment: Assignment, ext: void> { Ident _ '=' _ Expect<Assignment<Int>> ast("assign" + ext) Expression ast("value") } ast_print(Assignment<Int>)
the error messages gets more confusing:
Line 2, column 26: Use of undefined name 'Assignment<Int>'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This script
generates the error messages
When, according to the error message hint, the script is changed into this version:
the error messages gets more confusing:
The text was updated successfully, but these errors were encountered: