Properly process big types

This commit is contained in:
Mikhael Bogdanov
2021-06-25 09:18:10 +02:00
parent 0fd1f549a9
commit 5f62b72c82
14 changed files with 207 additions and 1 deletions
@@ -32259,6 +32259,16 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/strings"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM, true);
}
@TestMetadata("concatDynamicWithConstants.kt")
public void testConcatDynamicWithConstants() throws Exception {
runTest("compiler/testData/codegen/box/strings/concatDynamicWithConstants.kt");
}
@TestMetadata("concatDynamicWithSpecialSymbols.kt")
public void testConcatDynamicWithSpecialSymbols() throws Exception {
runTest("compiler/testData/codegen/box/strings/concatDynamicWithSpecialSymbols.kt");
}
@TestMetadata("constInStringTemplate.kt")
public void testConstInStringTemplate() throws Exception {
runTest("compiler/testData/codegen/box/strings/constInStringTemplate.kt");