-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
expect a command like 'getstatic', can get non-static field from a singleton object #101
Comments
public class Singleton {
private Singleton singleton = new Singleton();
private String test = "abc";
private Singleton() {}
public Singleton getInstance() {
return singleton;
}
} Expected command:
Expected output:
Is this what you want? If so, this is currently not supported yet. |
yes,this is what I want. |
@hengyunabc I believe this feature has not been implemented yet. Currently |
@Kingson4Wu Yes |
Refer to #240 |
No description provided.
The text was updated successfully, but these errors were encountered: