Add BE tests for 'break' and 'continue' inside 'when'
This commit is contained in:
Generated
+10
@@ -3808,6 +3808,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/breakInFinally.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("breakInWhen.kt")
|
||||
public void testBreakInWhen() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/breakInWhen.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("compareBoxedIntegerToZero.kt")
|
||||
public void testCompareBoxedIntegerToZero() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/compareBoxedIntegerToZero.kt");
|
||||
@@ -3833,6 +3838,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/continueInForCondition.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("continueInWhen.kt")
|
||||
public void testContinueInWhen() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/continueInWhen.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("continueInWhile.kt")
|
||||
public void testContinueInWhile() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/continueInWhile.kt");
|
||||
|
||||
+10
@@ -3818,6 +3818,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/breakInFinally.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("breakInWhen.kt")
|
||||
public void testBreakInWhen() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/breakInWhen.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("compareBoxedIntegerToZero.kt")
|
||||
public void testCompareBoxedIntegerToZero() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/compareBoxedIntegerToZero.kt");
|
||||
@@ -3843,6 +3848,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/continueInForCondition.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("continueInWhen.kt")
|
||||
public void testContinueInWhen() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/continueInWhen.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("continueInWhile.kt")
|
||||
public void testContinueInWhile() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/controlStructures/continueInWhile.kt");
|
||||
|
||||
Reference in New Issue
Block a user