JVM_IR KT-47984 allow noinline functional inplace args

This commit is contained in:
Dmitry Petrov
2021-08-09 17:44:24 +03:00
committed by TeamCityServer
parent 9be941def2
commit 7a99f9ff2e
11 changed files with 94 additions and 1 deletions
@@ -13098,6 +13098,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
runTest("compiler/testData/codegen/box/inlineArgsInPlace/mutableCollectionPlusAssign.kt");
}
@TestMetadata("noinlineParameter.kt")
public void testNoinlineParameter() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/noinlineParameter.kt");
}
@TestMetadata("suspensionPointInsideArgument.kt")
public void testSuspensionPointInsideArgument() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/suspensionPointInsideArgument.kt");
@@ -12504,6 +12504,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/mutableCollectionPlusAssign.kt");
}
@TestMetadata("noinlineParameter.kt")
public void testNoinlineParameter() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/noinlineParameter.kt");
}
@TestMetadata("suspensionPointInsideArgument.kt")
public void testSuspensionPointInsideArgument() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/suspensionPointInsideArgument.kt");
@@ -12569,6 +12569,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/mutableCollectionPlusAssign.kt");
}
@TestMetadata("noinlineParameter.kt")
public void testNoinlineParameter() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/noinlineParameter.kt");
}
@TestMetadata("suspensionPointInsideArgument.kt")
public void testSuspensionPointInsideArgument() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/suspensionPointInsideArgument.kt");
@@ -6659,6 +6659,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
runTest("compiler/testData/codegen/box/inlineArgsInPlace/mutableCollectionPlusAssign.kt");
}
@TestMetadata("noinlineParameter.kt")
public void testNoinlineParameter() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/noinlineParameter.kt");
}
@TestMetadata("suspensionPointInsideArgument.kt")
public void testSuspensionPointInsideArgument() throws Exception {
runTest("compiler/testData/codegen/box/inlineArgsInPlace/suspensionPointInsideArgument.kt");