Files
kotlin-fork/idea/testData/findUsages/java/findJavaMethodUsages/UnaryNot.0.java
T
Dmitry Jemerov f255f2a1e0 Optimize isReferenceTo() when searching for PsiMethod usages
Avoid resolving references when we know from context that a reference
at given location can't resolve to a PsiMethod.
2017-03-30 15:33:11 +02:00

8 lines
150 B
Java
Vendored

// PSI_ELEMENT: com.intellij.psi.PsiMethod
// OPTIONS: usages
public class UnaryNot {
public UnaryNot <caret>not() {
return this;
}
}