Break / continue implementation, test with break / continue, related changes in loop & loop tests

This commit is contained in:
Mikhail Glukhikh
2016-09-23 15:24:38 +03:00
committed by Dmitry Petrov
parent e03e13af43
commit 5a04c72e75
6 changed files with 135 additions and 6 deletions
@@ -90,6 +90,12 @@ public class IrCfgTestCaseGenerated extends AbstractIrCfgTestCase {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irCfg/loop/factorial.kt");
doTest(fileName);
}
@TestMetadata("isPerfect.kt")
public void testIsPerfect() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/ir/irCfg/loop/isPerfect.kt");
doTest(fileName);
}
}
@TestMetadata("compiler/testData/ir/irCfg/when")