-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
Issue with JavaCC generate code: GOTO code without target loop/block. #51
Comments
|
Created a project here to reproduce, but cant even get the basic example working, what am i doing wrong? https://github.com/JWood48/JWebAssemblyTest gradle wasm gives the following error:
|
This error look like that you use a higher Java version. Currently only with Java 8 you can use Strings. |
Ok, i am not able to downgrade unfortunately... when will Strings be supported for java 11? |
First I will fix all compiler errors (not API errors) with Java 8. Then I will take a look at Java 11. I have no idea how many errors I will find and that I have no idea how long it will take. Can be a month or multiple years. With compiler error I means thinks like the original error message A missing native method is an API error. You can fix it self: https://github.com/i-net-software/JWebAssembly/wiki/Compiler-Errors-and-Problems and make a PR. Alternative you can ignore it with |
I have a custom grammar in javacc and would like to convert it to wasm, but I get the error:
> GOTO code without target loop/block. Jump from 442 to 55 at gantt.cq.parser.CQParserTokenManager.getNextToken(CQParserTokenManager.java:2078)
The specific
getNextToken
function is:The line numbers do not match, but the referenced ´continue´ statement is in the last half of the code above:
The text was updated successfully, but these errors were encountered: