Skip to content

Generator Fails to Detect Multiple Instance Variables Declared in a Single Line #23

@syoon2

Description

@syoon2

To repro: run the generator with instance variables and private entities enabled (at minimum) using the following input:

public class Demo {
    private int var1, var2, var3;

    public Demo() {
        var1 = 0;
        var2 = 1;
        var3 = 2;
    }
}

Expected: all three var1, var2, and var3 are displayed.
Actual: only var3 is displayed

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions