mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
let exact prefix items be the ones that have exact prefix as any lookup string, not just the main one (IDEA-168948)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class SomeClass {
|
||||
void foo(Point p) {
|
||||
p.smth(JSON<caret>);
|
||||
}
|
||||
}
|
||||
|
||||
interface Point {
|
||||
int FOO = 2;
|
||||
int JSON = 3;
|
||||
void smth(int x);
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class SomeClass {
|
||||
void foo(Point p) {
|
||||
p.smth(JSON<caret>);
|
||||
}
|
||||
}
|
||||
|
||||
interface Point {
|
||||
int FOO = 2;
|
||||
int JSON = 3;
|
||||
void smth(int x);
|
||||
}
|
||||
Reference in New Issue
Block a user