Skip to content

Fix type inferencing for static trait fields #751

@eric-milles

Description

@eric-milles

Consider the following:

trait T {
  private static String field
  void m() {
    field // showing as unknown (no styling)
  }
}
trait T {
  private static final String field = 'value'
  void m() {
    field // showing as unknown (no styling)
  }
}

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions