JVM_IR don't use Intrinsics.stringPlus for 2-argument concatenation

This commit is contained in:
Dmitry Petrov
2021-09-30 16:42:46 +03:00
committed by TeamCityServer
parent 8a459821d0
commit 7e86f5dcd9
17 changed files with 194 additions and 26 deletions
@@ -27800,6 +27800,21 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
@TestMetadata("twoArgumentNullableStringOperatorPlus.kt")
public void testTwoArgumentNullableStringOperatorPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringOperatorPlus.kt");
}
@TestMetadata("twoArgumentNullableStringPlus.kt")
public void testTwoArgumentNullableStringPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringPlus.kt");
}
@TestMetadata("twoArgumentStringTemplate.kt")
public void testTwoArgumentStringTemplate() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentStringTemplate.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")
@@ -27206,6 +27206,21 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
@TestMetadata("twoArgumentNullableStringOperatorPlus.kt")
public void testTwoArgumentNullableStringOperatorPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringOperatorPlus.kt");
}
@TestMetadata("twoArgumentNullableStringPlus.kt")
public void testTwoArgumentNullableStringPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringPlus.kt");
}
@TestMetadata("twoArgumentStringTemplate.kt")
public void testTwoArgumentStringTemplate() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentStringTemplate.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")
@@ -27131,6 +27131,21 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
@TestMetadata("twoArgumentNullableStringOperatorPlus.kt")
public void testTwoArgumentNullableStringOperatorPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringOperatorPlus.kt");
}
@TestMetadata("twoArgumentNullableStringPlus.kt")
public void testTwoArgumentNullableStringPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringPlus.kt");
}
@TestMetadata("twoArgumentStringTemplate.kt")
public void testTwoArgumentStringTemplate() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentStringTemplate.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")
@@ -16415,6 +16415,21 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
@TestMetadata("twoArgumentNullableStringOperatorPlus.kt")
public void testTwoArgumentNullableStringOperatorPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringOperatorPlus.kt");
}
@TestMetadata("twoArgumentNullableStringPlus.kt")
public void testTwoArgumentNullableStringPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentNullableStringPlus.kt");
}
@TestMetadata("twoArgumentStringTemplate.kt")
public void testTwoArgumentStringTemplate() throws Exception {
runTest("compiler/testData/codegen/box/strings/twoArgumentStringTemplate.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")