mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
index only non-private static members; correct groovy second smart completion results
This commit is contained in:
+5
-3
@@ -1,5 +1,3 @@
|
||||
import java.lang.Object;
|
||||
|
||||
class Super<T> {
|
||||
}
|
||||
|
||||
@@ -10,6 +8,10 @@ class SubInt extends Super<Integer> { }
|
||||
class SubGeneric<T> extends Super<T> { }
|
||||
class SubRaw extends Super { }
|
||||
|
||||
interface Constants {
|
||||
SubString SUBSTRING = null
|
||||
}
|
||||
|
||||
class Factory {
|
||||
public static Object createObject() {}
|
||||
public static <T> Super<T> createExpected() {}
|
||||
@@ -21,7 +23,7 @@ class Factory {
|
||||
|
||||
class Intermediate {
|
||||
|
||||
Super<String> s = create<caret>x
|
||||
Super<String> s = <caret>
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user