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 would like to report a behavior change due to a missing "super" with java-input-plugin. Tested with openjdk8 and latest git version 59ef569
With java-input-plugin this sample
public class OverrideToString { @Override public String toString() { return super.toString(); } }
gets decompiled to a stack overflow:
public class OverrideToString { public String toString() { return toString(); } }
Java-convert-plugin/dex-input-plugin works fine, so this is not a regression. This example can be used in unit tests.
The text was updated successfully, but these errors were encountered:
fix: handle super case for invokespecial opcode (#1300)
4cc00bd
Fixed. Thanks, @nitram84 👍🏽
Sorry, something went wrong.
No branches or pull requests
I would like to report a behavior change due to a missing "super" with java-input-plugin. Tested with openjdk8 and latest git version 59ef569
With java-input-plugin this sample
gets decompiled to a stack overflow:
Java-convert-plugin/dex-input-plugin works fine, so this is not a regression. This example can be used in unit tests.
The text was updated successfully, but these errors were encountered: