Skip to content
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

Fix breakpoints in classes with inner/anonymous classes #314

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

nya3jp
Copy link

@nya3jp nya3jp commented Mar 19, 2025

Existing breakpoint installation logic assumes that there is one-to-one correspondence between a class and a Java source file. But it does not hold for classes with inner classes and/or anonymous classes.

This patch fixes the logic to handle the case. Also adds a regression test.

We used to have two scopes of variables, "locals" and "arguments".
However, VM somehow returns incorrect results for
LocalVariable#isArgument(), so we presented confusing views to users.
Since it's not very important to distinguish arguments and local
variables, we now include them in the same "locals" scope.

Instead, we introduce the new "fields" scope containing fields of the
current object (aka "this").

And finally, we now support inspecting the hierarchy of objects.
Existing breakpoint installation logic assumes that there is one-to-one
correspondence between a class and a Java source file. But it does not
hold for classes with inner classes and/or anonymous classes.

This patch fixes the logic to handle the case. Also adds a regression
test.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant