mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
middle matching in SmartTypeCompletionTest
This commit is contained in:
+1
-1
@@ -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>;
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public class TestCase extends Zzz {
|
||||
Object ooo;
|
||||
if (ooo instanceof String) {
|
||||
} else {
|
||||
foo(o<caret>)
|
||||
foo(oo<caret>)
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -7,7 +7,7 @@ public class TestCase extends Zzz {
|
||||
Object ooo;
|
||||
if (ooo instanceof String && true) {
|
||||
} else {
|
||||
foo(o<caret>)
|
||||
foo(oo<caret>)
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,7 +3,7 @@ public class TestCase extends Zzz {
|
||||
{
|
||||
Object ooo;
|
||||
if (!(ooo instanceof String)) {
|
||||
String s = o<caret>
|
||||
String s = oo<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user