mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
suggest class names in foreach with missing type (IDEA-74350)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public class Zoo2 {
|
||||
{
|
||||
for (Stri<caret>child : dir.getChildren())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Zoo2 {
|
||||
{
|
||||
for (Stri<caret> : dir.getChildren())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Zoo2 {
|
||||
{
|
||||
for (String <caret> : dir.getChildren())
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Zoo2 {
|
||||
{
|
||||
for (String <caret>child : dir.getChildren())
|
||||
}
|
||||
}
|
||||
|
||||
+2
@@ -854,6 +854,8 @@ public class NormalCompletionTest extends LightFixtureCompletionTestCase {
|
||||
|
||||
public void testMethodParameterAnnotationClass() throws Throwable { doTest(); }
|
||||
public void testPrimitiveCastOverwrite() throws Throwable { doTest '\t' }
|
||||
public void testClassReferenceInFor() throws Throwable { doTest ' ' }
|
||||
public void testClassReferenceInFor2() throws Throwable { doTest ' ' }
|
||||
|
||||
public void testVoidMethodsInNonVoidContext() throws Throwable {
|
||||
configure()
|
||||
|
||||
Reference in New Issue
Block a user