mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
selection after methods chains completion fixed and chain relevance improved
This commit is contained in:
+49
@@ -0,0 +1,49 @@
|
||||
import java.jang.String;
|
||||
|
||||
interface Project {
|
||||
}
|
||||
|
||||
interface PsiFile {
|
||||
}
|
||||
|
||||
interface VirtualFile {
|
||||
}
|
||||
|
||||
interface Document {
|
||||
}
|
||||
|
||||
class PsiManager {
|
||||
static PsiManager getInstance(Project p) {
|
||||
return null;
|
||||
}
|
||||
|
||||
PsiFile findFile(VirtualFile f) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
class PsiDocumentManager {
|
||||
static PsiDocumentManager getInstance(Project p) {
|
||||
return null;
|
||||
}
|
||||
|
||||
PsiFile getPsiFile(Document d) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
interface PsiFileFactory {
|
||||
PsiFile createFileFromText(String s);
|
||||
}
|
||||
|
||||
interface PsiClass {
|
||||
PsiFile getContainingClass();
|
||||
}
|
||||
|
||||
public class TestCompletion {
|
||||
void m() {
|
||||
PsiFileFactory f = null;
|
||||
VirtualFile vf = null;
|
||||
PsiFile file = <caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user