java chained completion: qualifier class items shouldn't be inserted as constructors

This commit is contained in:
peter
2014-07-22 18:26:55 +02:00
parent 7cb41f86ea
commit f81e96ef9d
6 changed files with 26 additions and 2 deletions
@@ -0,0 +1,6 @@
class Zoo {
void foo() {
new Super.I<caret>
}
}
@@ -0,0 +1,8 @@
import foo.Super;
class Zoo {
void foo() {
new Super.Inner()<caret>
}
}