Skip to content

Fix type inferencing, syntax highlighting and code navigation for field reference with accessor declared in super class #1130

@eric-milles

Description

@eric-milles

Consider the following:

abstract class A {
  def getX() { }
}
class C extends A {
  private x
  void test() {
    this.x
  }
}

"x" in this.x is displayed as method call instead of field access.

image

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions