-
Notifications
You must be signed in to change notification settings - Fork 435
Respect interface hierarchy for default methods in vtable generation #4402
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
Merged
shai-almog
merged 1 commit into
master
from
codex/fix-default-methods-in-interface-hierarchy
Jan 12, 2026
Merged
Respect interface hierarchy for default methods in vtable generation #4402
shai-almog
merged 1 commit into
master
from
codex/fix-default-methods-in-interface-hierarchy
Jan 12, 2026
+117
−1
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✅ Continuous Quality ReportTest & Coverage
Static Analysis
Generated automatically by the PR CI workflow. |
✅ ByteCodeTranslator Quality ReportTest & Coverage
Benchmark Results
Static Analysis
Generated automatically by the PR CI workflow. |
Collaborator
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.







Motivation
superwould not correctly replace the base interface entry in the virtual method table.Description
isInterfaceInHierarchyto detect when a class name appears in an interface's inheritance chain.fillVirtualMethodTableto allow an interface method to replace a base-interface entry when the current class is an interface and the existing entry belongs to an interface in its hierarchy.translatesDefaultInterfaceMethodOverridesWithSuperCallsinParserTestwhich generates a base interface, derived interface that invokessuper, and an implementation, and asserts both the derived method calls the base default and that the implementation points its vtable to the derived default.Testing
mvn -Dtest=ParserTest testinvm/teststo exercise the updatedParserTestincludingtranslatesDefaultInterfaceMethodOverridesWithSuperCalls.com.codename1.parparvm:ByteCodeTranslator:jar:1.0-SNAPSHOT, so the test suite could not complete in this environment.Codex Task