middle matching in SmartTypeCompletionTest

This commit is contained in:
peter
2012-07-30 19:03:27 +02:00
parent 2f8cc6cde8
commit b24c05983d
6 changed files with 34 additions and 33 deletions
@@ -10,6 +10,6 @@ class Foo<B> {
ExtensionPointName<B> EXTENSION_POINT_NAME = ExtensionPointName.create("com.intellij.fileBasedIndex");
void f() {
final B[] extensions = getExtensions(<caret>XXX.EXTENSION_POINT_NAME);
final B[] extensions = getExtensions(EXTENSION_POINT_NAME)<caret>;
}
}
@@ -7,7 +7,7 @@ public class TestCase extends Zzz {
Object ooo;
if (ooo instanceof String) {
} else {
foo(o<caret>)
foo(oo<caret>)
}
}
}
@@ -7,7 +7,7 @@ public class TestCase extends Zzz {
Object ooo;
if (ooo instanceof String && true) {
} else {
foo(o<caret>)
foo(oo<caret>)
}
}
}
@@ -3,7 +3,7 @@ public class TestCase extends Zzz {
{
Object ooo;
if (!(ooo instanceof String)) {
String s = o<caret>
String s = oo<caret>
}
}
}