java completion: group fields together with local variables (IDEA-168743 , IDEA-172888)

This commit is contained in:
peter
2017-05-24 20:40:20 +02:00
parent fc6ee7f9ee
commit 4208f1d7b3
8 changed files with 40 additions and 12 deletions
@@ -0,0 +1,9 @@
class Foo {
String text;
void doSmth() {}
void foo(String text) {
this.<caret>
}
}
@@ -0,0 +1,6 @@
class Foo {
String field;
void foo(Integer local) {
String s = <caret>
}
}