mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
prefix matching is more important than element kind and statistics
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class PsiElement {}
|
||||
|
||||
public class Foo {
|
||||
|
||||
Object psiElement() {}
|
||||
|
||||
void foo() {
|
||||
Psi<caret>
|
||||
}
|
||||
}
|
||||
+3
-11
@@ -1,22 +1,14 @@
|
||||
class T {
|
||||
I myLastI;
|
||||
I getLastI() { return myLastI; }
|
||||
I lastI;
|
||||
I getLastI() { return lastI; }
|
||||
|
||||
void setLastI(I a) {
|
||||
myLastI = <caret>
|
||||
lastI = <caret>
|
||||
}
|
||||
}
|
||||
|
||||
class I {
|
||||
static final I _1 = new I();
|
||||
static final I _2a = new I();
|
||||
static final I _3a = new I();
|
||||
static final I _4a = new I();
|
||||
static final I _5a = new I();
|
||||
static final I _6a = new I();
|
||||
static final I _7a = new I();
|
||||
static final I _8a = new I();
|
||||
static final I _9a = new I();
|
||||
|
||||
static I valueOf(String sth) {
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user