KT-43217 Encode @EnhancedNullability types in IdSignature

This commit is contained in:
Dmitry Petrov
2020-11-09 08:37:00 +03:00
parent f6df624c6b
commit b9c6267a63
21 changed files with 470 additions and 2 deletions
@@ -17369,6 +17369,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
runTest("compiler/testData/codegen/box/javaInterop/genericSamSmartcast.kt");
}
@TestMetadata("kt43217.kt")
public void testKt43217() throws Exception {
runTest("compiler/testData/codegen/box/javaInterop/kt43217.kt");
}
@TestMetadata("lambdaInstanceOf.kt")
public void testLambdaInstanceOf() throws Exception {
runTest("compiler/testData/codegen/box/javaInterop/lambdaInstanceOf.kt");
@@ -109,6 +109,11 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
runTest("compiler/testData/codegen/bytecodeListing/kt42879.kt");
}
@TestMetadata("kt43217.kt")
public void testKt43217() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/kt43217.kt");
}
@TestMetadata("localFunctionInInitBlock.kt")
public void testLocalFunctionInInitBlock() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/localFunctionInInitBlock.kt");
@@ -17369,6 +17369,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/javaInterop/genericSamSmartcast.kt");
}
@TestMetadata("kt43217.kt")
public void testKt43217() throws Exception {
runTest("compiler/testData/codegen/box/javaInterop/kt43217.kt");
}
@TestMetadata("lambdaInstanceOf.kt")
public void testLambdaInstanceOf() throws Exception {
runTest("compiler/testData/codegen/box/javaInterop/lambdaInstanceOf.kt");
@@ -15969,6 +15969,11 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
runTest("compiler/testData/codegen/box/javaInterop/genericSamSmartcast.kt");
}
@TestMetadata("kt43217.kt")
public void testKt43217() throws Exception {
runTest("compiler/testData/codegen/box/javaInterop/kt43217.kt");
}
@TestMetadata("lambdaInstanceOf.kt")
public void testLambdaInstanceOf() throws Exception {
runTest("compiler/testData/codegen/box/javaInterop/lambdaInstanceOf.kt");
@@ -109,6 +109,11 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
runTest("compiler/testData/codegen/bytecodeListing/kt42879.kt");
}
@TestMetadata("kt43217.kt")
public void testKt43217() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/kt43217.kt");
}
@TestMetadata("localFunctionInInitBlock.kt")
public void testLocalFunctionInInitBlock() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/localFunctionInInitBlock.kt");
@@ -195,6 +195,11 @@ public class IrTextTestCaseGenerated extends AbstractIrTextTestCase {
runTest("compiler/testData/ir/irText/classes/kt31649.kt");
}
@TestMetadata("kt43217.kt")
public void testKt43217() throws Exception {
runTest("compiler/testData/ir/irText/classes/kt43217.kt");
}
@TestMetadata("lambdaInDataClassDefaultParameter.kt")
public void testLambdaInDataClassDefaultParameter() throws Exception {
runTest("compiler/testData/ir/irText/classes/lambdaInDataClassDefaultParameter.kt");