groovy-eclipse icon indicating copy to clipboard operation
groovy-eclipse copied to clipboard

Fields, properties and private or static methods in trait not shown in Outline views

Open eric-milles opened this issue 6 years ago • 0 comments

Consider the following:

trait T {
  String property
  private String field
  private def method() {}
  private static def staticMethod() {}
}

None of T's members are displayed in the Outline views.

Also, visible static methods are not shown and visible non-static methods are seen with an abstract indicator.

eric-milles avatar Feb 16 '19 20:02 eric-milles