uninitialized fields should be offered at least when initializing them

This commit is contained in:
peter
2011-02-23 15:13:40 +01:00
parent b09a5bed9e
commit 40c073a073
4 changed files with 67 additions and 37 deletions
@@ -0,0 +1,6 @@
class A {
final boolean aboo;
A() {
abo<caret>
}
}
@@ -0,0 +1,6 @@
class A {
final boolean aboo;
A() {
aboo<caret>
}
}
@@ -371,6 +371,7 @@ public class NormalCompletionTest extends LightFixtureCompletionTestCase {
}
public void testLocalClassName() throws Throwable { doTest(); }
public void testAssigningFieldForTheFirstTime() throws Throwable { doTest(); }
public void testClassTypeParameters() throws Throwable {
configure()