mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-13 20:37:16 +07:00
19 lines
320 B
Java
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>
|
|
}
|
|
}
|