mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
dot chooses lookup items, even those that contain dot
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
}
|
||||
class Super2 {
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
void foo(Super s, int a) {}
|
||||
void bar() {
|
||||
foo(Su<caret>)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
class Super {
|
||||
public static final Super FOO = null;
|
||||
}
|
||||
class Super2 {
|
||||
}
|
||||
|
||||
class Intermediate {
|
||||
void foo(Super s, int a) {}
|
||||
void bar() {
|
||||
foo(Super.<caret>)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user