Pseudocode: Add test for parenthesized call in selector

This commit is contained in:
Alexey Sedunov
2014-07-25 15:49:19 +04:00
parent 85bb4f9b8e
commit 2a19016d58
5 changed files with 150 additions and 0 deletions
@@ -409,6 +409,11 @@ public class ControlFlowTestGenerated extends AbstractControlFlowTest {
doTest("compiler/testData/cfg/expressions/nothingExpr.kt");
}
@TestMetadata("parenthesizedSelector.kt")
public void testParenthesizedSelector() throws Exception {
doTest("compiler/testData/cfg/expressions/parenthesizedSelector.kt");
}
@TestMetadata("propertySafeCall.kt")
public void testPropertySafeCall() throws Exception {
doTest("compiler/testData/cfg/expressions/propertySafeCall.kt");
@@ -411,6 +411,11 @@ public class PseudoValueTestGenerated extends AbstractPseudoValueTest {
doTest("compiler/testData/cfg/expressions/nothingExpr.kt");
}
@TestMetadata("parenthesizedSelector.kt")
public void testParenthesizedSelector() throws Exception {
doTest("compiler/testData/cfg/expressions/parenthesizedSelector.kt");
}
@TestMetadata("propertySafeCall.kt")
public void testPropertySafeCall() throws Exception {
doTest("compiler/testData/cfg/expressions/propertySafeCall.kt");