Completion: add root prefix support
#KT-10340 Fixed
This commit is contained in:
+20
@@ -39,6 +39,21 @@ public class PerformanceBasicCompletionHandlerTestGenerated extends AbstractPerf
|
||||
runTest("idea/idea-completion/testData/handlers/basic/ClassKeywordBeforeName.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassNameForMethodWithPackageConflict.kt")
|
||||
public void testClassNameForMethodWithPackageConflict() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/basic/ClassNameForMethodWithPackageConflict.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassNameForMethodWithPackageConflict2.kt")
|
||||
public void testClassNameForMethodWithPackageConflict2() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/basic/ClassNameForMethodWithPackageConflict2.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassNameWithPackageConflict.kt")
|
||||
public void testClassNameWithPackageConflict() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/basic/ClassNameWithPackageConflict.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassWithClassObject.kt")
|
||||
public void testClassWithClassObject() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/basic/ClassWithClassObject.kt");
|
||||
@@ -169,6 +184,11 @@ public class PerformanceBasicCompletionHandlerTestGenerated extends AbstractPerf
|
||||
runTest("idea/idea-completion/testData/handlers/basic/SpaceAfterParenthesisBug.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("StaticFunctionFromJavaWithConflict.kt")
|
||||
public void testStaticFunctionFromJavaWithConflict() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/basic/StaticFunctionFromJavaWithConflict.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("StringFakeConstructor.kt")
|
||||
public void testStringFakeConstructor() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/basic/StringFakeConstructor.kt");
|
||||
|
||||
+5
@@ -129,6 +129,11 @@ public class PerformanceSmartCompletionHandlerTestGenerated extends AbstractPerf
|
||||
runTest("idea/idea-completion/testData/handlers/smart/ClassInObject.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassNameFromKotlinWithPackageConflict.kt")
|
||||
public void testClassNameFromKotlinWithPackageConflict() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/smart/ClassNameFromKotlinWithPackageConflict.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassObjectFieldKeywordName.kt")
|
||||
public void testClassObjectFieldKeywordName() throws Exception {
|
||||
runTest("idea/idea-completion/testData/handlers/smart/ClassObjectFieldKeywordName.kt");
|
||||
|
||||
Reference in New Issue
Block a user