IDEA-80583 Wrong suggestion in qualified field type

This commit is contained in:
peter
2012-01-31 18:30:26 +01:00
parent 894ef5292c
commit 57a2a49892
6 changed files with 27 additions and 24 deletions
@@ -0,0 +1,3 @@
class Foo {
java.l<caret>
}
@@ -0,0 +1,3 @@
class Foo {
java.lang.<caret>
}
@@ -1258,16 +1258,10 @@ public class ListUtils {
}
}
public void testNoGenericsWhenChoosingWithParen() {
configure()
myFixture.type 'Ma('
checkResult()
}
public void testNoGenericsWhenChoosingWithParen() { doTest('Ma(') }
public void testNoClosingWhenChoosingWithParenBeforeIdentifier() {
configure()
myFixture.type '('
checkResult()
}
public void testNoClosingWhenChoosingWithParenBeforeIdentifier() { doTest '(' }
public void testPackageInMemberType() { doTest() }
}