Partial body resolve: more efficient for-loop handling

This commit is contained in:
Valentin Kipyatkov
2014-11-18 14:38:47 +03:00
parent 5283b92269
commit e6acc5601c
4 changed files with 24 additions and 0 deletions
@@ -19,6 +19,7 @@ package org.jetbrains.jet.resolve;
import com.intellij.testFramework.TestDataPath;
import org.jetbrains.jet.JUnit3RunnerWithInners;
import org.jetbrains.jet.JetTestUtils;
import org.jetbrains.jet.test.InnerTestClasses;
import org.jetbrains.jet.test.TestMetadata;
import org.junit.runner.RunWith;
@@ -53,6 +54,12 @@ public class PartialBodyResolveTestGenerated extends AbstractPartialBodyResolveT
doTest(fileName);
}
@TestMetadata("For.kt")
public void testFor() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/resolve/partialBodyResolve/For.kt");
doTest(fileName);
}
@TestMetadata("IfBranchesAutoCasts.kt")
public void testIfBranchesAutoCasts() throws Exception {
String fileName = JetTestUtils.navigationMetadata("idea/testData/resolve/partialBodyResolve/IfBranchesAutoCasts.kt");