mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-15 15:39:47 +07:00
25 lines
340 B
Java
25 lines
340 B
Java
/**
|
|
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
|
*/
|
|
|
|
class PsiManager {
|
|
Project getProject() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
interface Project {
|
|
VirtualFile getBaseDir();
|
|
}
|
|
|
|
class VirtualFile {
|
|
}
|
|
|
|
public class TestCompletion {
|
|
PsiManager m;
|
|
|
|
public void method(Project p) {
|
|
VirtualFile projectBaseDir = <caret>
|
|
}
|
|
}
|