Skip to content

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

@jdneo

Description

@jdneo

[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;
        }
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions