Files
openide/java/java-tests/testData/codeInsight/completion/methodChains/testCyclingMethodsNotShowed/TestCompletion.java
T
2013-07-12 12:48:39 +04:00

19 lines
320 B
Java

/**
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
*/
class PsiElement {
public PsiElement getPrevSibling() {
return null;
}
public PsiElement getParent() {
return null;
}
}
public class TestCompletion {
public void method(PsiElement e) {
PsiElement anotherElement = <caret>
}
}