[java decompiler] excludes false inner classes
This commit is contained in:
BIN
testData/classes/pkg/TestGroovyTrait$Trait$FieldHelper.class
Normal file
BIN
testData/classes/pkg/TestGroovyTrait$Trait$FieldHelper.class
Normal file
Binary file not shown.
BIN
testData/classes/pkg/TestGroovyTrait$Trait$Helper.class
Normal file
BIN
testData/classes/pkg/TestGroovyTrait$Trait$Helper.class
Normal file
Binary file not shown.
BIN
testData/classes/pkg/TestGroovyTrait.class
Normal file
BIN
testData/classes/pkg/TestGroovyTrait.class
Normal file
Binary file not shown.
17
testData/results/TestGroovyTrait.dec
Normal file
17
testData/results/TestGroovyTrait.dec
Normal file
@@ -0,0 +1,17 @@
|
||||
package pkg;
|
||||
|
||||
import groovy.transform.Trait;
|
||||
import org.codehaus.groovy.transform.trait.Traits.Implemented;
|
||||
|
||||
@Trait
|
||||
public interface TestGroovyTrait {
|
||||
@Implemented
|
||||
Object myMethod();
|
||||
|
||||
@Implemented
|
||||
Object getMyField();
|
||||
|
||||
@Implemented
|
||||
void setMyField(Object var1);
|
||||
}
|
||||
|
||||
8
testData/src/pkg/TestGroovyTrait.groovy
Normal file
8
testData/src/pkg/TestGroovyTrait.groovy
Normal file
@@ -0,0 +1,8 @@
|
||||
package pkg
|
||||
|
||||
trait TestGroovyTrait {
|
||||
def myField = 42
|
||||
def myMethod() {
|
||||
42
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user