Support large strings in indy-with-constants concatenation

#KT-47917 Fixed
This commit is contained in:
Mikhael Bogdanov
2021-09-01 12:57:15 +02:00
committed by Space
parent d2d3708827
commit 19474ee30f
19 changed files with 314 additions and 24 deletions
@@ -27513,6 +27513,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
runTest("compiler/testData/codegen/box/strings/kt3652.kt");
}
@TestMetadata("kt47917.kt")
public void testKt47917() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt47917.kt");
}
@TestMetadata("kt5389_stringBuilderGet.kt")
public void testKt5389_stringBuilderGet() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt5389_stringBuilderGet.kt");
@@ -27582,6 +27587,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
public void testStringPlusOverride() throws Exception {
runTest("compiler/testData/codegen/box/strings/stringPlusOverride.kt");
}
@TestMetadata("surrogatePair.kt")
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")
@@ -26919,6 +26919,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/strings/kt3652.kt");
}
@TestMetadata("kt47917.kt")
public void testKt47917() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt47917.kt");
}
@TestMetadata("kt5389_stringBuilderGet.kt")
public void testKt5389_stringBuilderGet() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt5389_stringBuilderGet.kt");
@@ -26988,6 +26993,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
public void testStringPlusOverride() throws Exception {
runTest("compiler/testData/codegen/box/strings/stringPlusOverride.kt");
}
@TestMetadata("surrogatePair.kt")
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")
@@ -26859,6 +26859,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/strings/kt3652.kt");
}
@TestMetadata("kt47917.kt")
public void testKt47917() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt47917.kt");
}
@TestMetadata("kt5389_stringBuilderGet.kt")
public void testKt5389_stringBuilderGet() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt5389_stringBuilderGet.kt");
@@ -26928,6 +26933,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
public void testStringPlusOverride() throws Exception {
runTest("compiler/testData/codegen/box/strings/stringPlusOverride.kt");
}
@TestMetadata("surrogatePair.kt")
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")
@@ -14949,6 +14949,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
runTest("compiler/testData/codegen/box/strings/kt3652.kt");
}
@TestMetadata("kt47917.kt")
public void testKt47917() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt47917.kt");
}
@TestMetadata("kt5956.kt")
public void testKt5956() throws Exception {
runTest("compiler/testData/codegen/box/strings/kt5956.kt");
@@ -14998,6 +15003,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
public void testStringPlusOverride() throws Exception {
runTest("compiler/testData/codegen/box/strings/stringPlusOverride.kt");
}
@TestMetadata("surrogatePair.kt")
public void testSurrogatePair() throws Exception {
runTest("compiler/testData/codegen/box/strings/surrogatePair.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/super")