Remove Concat and StringPlus intrinsics in favor of IrStringConcatenation.

This commit is contained in:
Steven Schäfer
2019-04-04 16:09:49 +02:00
committed by max-kammerer
parent 26c9d69252
commit f2392a6a28
20 changed files with 192 additions and 120 deletions
@@ -23565,6 +23565,16 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
runTest("compiler/testData/codegen/box/strings/rawStringsWithManyQuotes.kt");
}
@TestMetadata("simpleStringPlus.kt")
public void testSimpleStringPlus() throws Exception {
runTest("compiler/testData/codegen/box/strings/simpleStringPlus.kt");
}
@TestMetadata("singleConcatNullable.kt")
public void testSingleConcatNullable() throws Exception {
runTest("compiler/testData/codegen/box/strings/singleConcatNullable.kt");
}
@TestMetadata("stringBuilderAppend.kt")
public void testStringBuilderAppend() throws Exception {
runTest("compiler/testData/codegen/box/strings/stringBuilderAppend.kt");
@@ -23574,6 +23584,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
public void testStringPlusOnlyWorksOnString() throws Exception {
runTest("compiler/testData/codegen/box/strings/stringPlusOnlyWorksOnString.kt");
}
@TestMetadata("stringPlusOverride.kt")
public void testStringPlusOverride() throws Exception {
runTest("compiler/testData/codegen/box/strings/stringPlusOverride.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")