Introduced QualifierReceiver instead of PackageType
This commit is contained in:
@@ -3882,6 +3882,11 @@ public class JetDiagnosticsTestGenerated extends AbstractJetDiagnosticsTest {
|
||||
doTest("compiler/testData/diagnostics/tests/incompleteCode/diagnosticWithSyntaxError/funcitonTypes.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("incompleteEnumReference.kt")
|
||||
public void testIncompleteEnumReference() throws Exception {
|
||||
doTest("compiler/testData/diagnostics/tests/incompleteCode/diagnosticWithSyntaxError/incompleteEnumReference.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("incompleteVal.kt")
|
||||
public void testIncompleteVal() throws Exception {
|
||||
doTest("compiler/testData/diagnostics/tests/incompleteCode/diagnosticWithSyntaxError/incompleteVal.kt");
|
||||
@@ -6973,6 +6978,11 @@ public class JetDiagnosticsTestGenerated extends AbstractJetDiagnosticsTest {
|
||||
JetTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("compiler/testData/diagnostics/tests/resolve"), Pattern.compile("^(.+)\\.kt$"), true);
|
||||
}
|
||||
|
||||
@TestMetadata("ambiguityOnPropertiesWithTheSamePackageName.kt")
|
||||
public void testAmbiguityOnPropertiesWithTheSamePackageName() throws Exception {
|
||||
doTest("compiler/testData/diagnostics/tests/resolve/ambiguityOnPropertiesWithTheSamePackageName.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("incompleteConstructorInvocation.kt")
|
||||
public void testIncompleteConstructorInvocation() throws Exception {
|
||||
doTest("compiler/testData/diagnostics/tests/resolve/incompleteConstructorInvocation.kt");
|
||||
|
||||
@@ -129,6 +129,11 @@ public class JetDiagnosticsTestWithStdLibGenerated extends AbstractJetDiagnostic
|
||||
doTest("compiler/testData/diagnostics/testsWithStdLib/callableReference/function/ambiguityTopLevelVsTopLevel.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("callableRefrenceOnNestedObject.kt")
|
||||
public void testCallableRefrenceOnNestedObject() throws Exception {
|
||||
doTest("compiler/testData/diagnostics/testsWithStdLib/callableReference/function/callableRefrenceOnNestedObject.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("constructorFromClass.kt")
|
||||
public void testConstructorFromClass() throws Exception {
|
||||
doTest("compiler/testData/diagnostics/testsWithStdLib/callableReference/function/constructorFromClass.kt");
|
||||
|
||||
@@ -685,6 +685,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
|
||||
doTest("compiler/testData/codegen/box/classes/classObject.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("classObjectAsExtensionReceiver.kt")
|
||||
public void testClassObjectAsExtensionReceiver() throws Exception {
|
||||
doTest("compiler/testData/codegen/box/classes/classObjectAsExtensionReceiver.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("classObjectAsStaticInitializer.kt")
|
||||
public void testClassObjectAsStaticInitializer() throws Exception {
|
||||
doTest("compiler/testData/codegen/box/classes/classObjectAsStaticInitializer.kt");
|
||||
|
||||
Reference in New Issue
Block a user