dot chooses lookup items, even those that contain dot

This commit is contained in:
peter
2011-09-06 18:38:34 +02:00
parent cd6ccaf452
commit bff5d16471
6 changed files with 38 additions and 7 deletions
@@ -0,0 +1,14 @@
class Super {
public static final Super FOO = null;
}
class Super2 {
}
class Intermediate {
void foo(Super s, int a) {}
void bar() {
foo(Su<caret>)
}
}
@@ -0,0 +1,14 @@
class Super {
public static final Super FOO = null;
}
class Super2 {
}
class Intermediate {
void foo(Super s, int a) {}
void bar() {
foo(Super.<caret>)
}
}