make completion stats prefix-independent, make prefix more important a weighing criterion (IDEA-165932, also needed for IDEA-166442)

This commit is contained in:
peter
2017-01-17 09:24:43 +01:00
parent 8e8be7e208
commit f85b52691f
10 changed files with 25 additions and 165 deletions
@@ -1,11 +0,0 @@
class Foo1 { boolean method1() {} }
class Foo2 { boolean method2() {} }
class Foo3 { boolean method3() {} }
public class MyFirstTestClassFoo {
void foo(Foo1 f1, Foo2 f2, Foo3 f3) {
f1.<caret>
}
}
@@ -1,9 +0,0 @@
class Foo {
boolean ENABLED;
void enable() {}
{
if (!en<caret>)
}
}
@@ -1,6 +0,0 @@
class FooBar {
int _foo1, _foo2, _boo1, _boo2, _goo1, _goo2;
{
<caret>
}
}