Skip to content

Fix type inferencing, syntax highlighting and code navigation for outer class of parent class references #1133

@eric-milles

Description

@eric-milles

Consider the following:

class A {
  public static X = 1
  static class B {
  }
}
class C extends A.B {
  void test() {
    print X
  }
}

new C().test()

Executing this script prints "1", however the variable expression "X" is displayed as unknown (underlined).

image

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions