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

Step filter in the settings.json is not working #1085

Closed
Tracked by #819
jdneo opened this issue Nov 23, 2021 · 0 comments · Fixed by #1086
Closed
Tracked by #819

Step filter in the settings.json is not working #1085

jdneo opened this issue Nov 23, 2021 · 0 comments · Fixed by #1086

Comments

@jdneo
Copy link
Member

jdneo commented Nov 23, 2021

[provide a description of the issue]

Environment

Version: 1.62.3 (user setup)
Commit: ccbaa2d27e38e5afa3e5c21c1c7bef4657064247
Date: 2021-11-17T08:11:14.551Z
Electron: 13.5.2
Chrome: 91.0.4472.164
Node.js: 14.16.0
V8: 9.1.269.39-electron.0
OS: Windows_NT x64 10.0.19044

Steps To Reproduce
  1. Set "java.debug.settings.stepping.skipSynthetics": true
  2. Run the following code
import java.util.Calendar;
import java.util.Date;

import static java.lang.System.out;

public final class Test {
    public static void main(final String[] arguments) {
        Test.NestedClass nested = new Test.NestedClass();
        out.println("String: " + nested.highlyConfidential);
        out.println("Int: " + nested.highlyConfidentialInt);
        out.println("Calendar: " + nested.highlyConfidentialCalendar);
        out.println("Boolean: " + nested.highlyConfidentialBoolean);
        out.println("Date: " + nested.getDate());
    }

    private static final class NestedClass {
        private String highlyConfidential = "Don't tell anyone about me";
        private int highlyConfidentialInt = 42;
        private Calendar highlyConfidentialCalendar = Calendar.getInstance();
        private boolean highlyConfidentialBoolean = true;
        private Date date = new Date();

        public Date getDate() {
            return this.date;
        }
    }
}
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 a pull request may close this issue.

1 participant