Fix completion test for Java in 193
It looks like java completion doesn't use () anymore.
This commit is contained in:
committed by
Nikolay Krasko
parent
42312c3060
commit
7e5316b9f1
+11
@@ -0,0 +1,11 @@
|
|||||||
|
public class Testing {
|
||||||
|
public static void test() {
|
||||||
|
DefaultImpl<caret>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// EXIST: { lookupString: "DefaultImpls", tailText: " defaultImpls.NonAbstractFun" }
|
||||||
|
// EXIST: { lookupString: "DefaultImpls", tailText: " defaultImpls.NonAbstractFunWithExpressionBody" }
|
||||||
|
// EXIST: { lookupString: "DefaultImpls", tailText: " defaultImpls.NonAbstractProperty" }
|
||||||
|
// EXIST: { lookupString: "DefaultImpls", tailText: " defaultImpls.NonAbstractPropertyWithBody" }
|
||||||
|
// ABSENT: { lookupString: "DefaultImpls", tailText: " defaultImpls.AllAbstract" }
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
public class Testing {
|
||||||
|
public static void test() {
|
||||||
|
List<caret>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// EXIST: EmptyList
|
||||||
|
// EXIST: { lookupString:List,tailText:"<E> java.util" }
|
||||||
|
// ABSENT: { lookupString:List,tailText:"<E> kotlin.collections" }
|
||||||
Reference in New Issue
Block a user