Files
kotlin-fork/idea/testData/findUsages/java/findJavaMethodUsages/JavaWithGroovyInvoke.0.groovy
T
Nikolay Krasko 111f0b1e66 Avoid full references search for languages without PsiClass (KT-14974)
Make smart type search work for Groovy.

 #KT-14974 Fixed
2017-04-21 15:12:07 +03:00

12 lines
410 B
Groovy
Vendored

class GroovyClass extends JavaWithGroovyInvoke_0 {
public def fieldNoType = new JavaWithGroovyInvoke_0.OtherJavaClass()
public def JavaWithGroovyInvoke_0.OtherJavaClass fieldWithType = fieldNoType
def methodNoType() {
new JavaWithGroovyInvoke_0.OtherJavaClass()
}
JavaWithGroovyInvoke_0.OtherJavaClass methodWithType() {
new JavaWithGroovyInvoke_0.OtherJavaClass()
}
}