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
I have a rule:
JavaStatement returns AbstractStatement: {JavaStatement} (statement+=XJStatementOrBlock)+ ;
When I parse e.g.:
for (int i = 0; i < y; i++) { x+=i; }
Everything works perfectly. However, if I change the comparison-symbol to <= it won't compile.
<=
for (int i = 0; i <= y; i++) { x+=i; }
Is this an error in the rules of jbase or my bad?
The text was updated successfully, but these errors were encountered:
it won't compile with what error?
Sorry, something went wrong.
Multiple markers at this line
Have you solved the problem or is it still an issue?
Still an issue.
No branches or pull requests
I have a rule:
When I parse e.g.:
Everything works perfectly.
However, if I change the comparison-symbol to
<=
it won't compile.Is this an error in the rules of jbase or my bad?
The text was updated successfully, but these errors were encountered: