mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
method chains completion
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
||||
*/
|
||||
|
||||
class LocalFileSystem {
|
||||
public LocalFileSystem returnSelf() {
|
||||
return this;
|
||||
}
|
||||
|
||||
public static LocalFileSystem getInstance() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public class TestCompletion {
|
||||
public void method(LocalFileSystem lfs) {
|
||||
LocalFileSystem anotherLfs = <caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user