[SLC] Ignore callables with invalid or absent names (KTIJ-23584)

This commit is contained in:
Yan Zhulanow
2022-11-10 17:23:38 +09:00
committed by teamcity
parent 6fe989b4b4
commit e21226d02a
11 changed files with 68 additions and 85 deletions
@@ -251,6 +251,11 @@ public class CompilerLightClassTestGenerated extends AbstractCompilerLightClassT
runTest("compiler/testData/asJava/lightClasses/compilationErrors/ExpectedNestedClassInObject.kt");
}
@TestMetadata("FunctionWithoutName.kt")
public void testFunctionWithoutName() throws Exception {
runTest("compiler/testData/asJava/lightClasses/compilationErrors/FunctionWithoutName.kt");
}
@TestMetadata("JvmPackageName.kt")
public void testJvmPackageName() throws Exception {
runTest("compiler/testData/asJava/lightClasses/compilationErrors/JvmPackageName.kt");
@@ -266,6 +271,11 @@ public class CompilerLightClassTestGenerated extends AbstractCompilerLightClassT
runTest("compiler/testData/asJava/lightClasses/compilationErrors/PrivateInTrait.kt");
}
@TestMetadata("PropertyWithoutName.kt")
public void testPropertyWithoutName() throws Exception {
runTest("compiler/testData/asJava/lightClasses/compilationErrors/PropertyWithoutName.kt");
}
@TestMetadata("RepetableAnnotations.kt")
public void testRepetableAnnotations() throws Exception {
runTest("compiler/testData/asJava/lightClasses/compilationErrors/RepetableAnnotations.kt");