New Intention: Replace for loop with forEach

Replaces an expression of the form “for (i in list) { … }” with an
expression of the form “list.forEach { i -> … }”
This commit is contained in:
Pradyoth Kukkapalli
2014-04-07 11:50:09 -04:00
committed by Mikhael Bogdanov
parent dbb28c571b
commit 33fd82cf45
23 changed files with 233 additions and 2 deletions
@@ -413,6 +413,7 @@ fun main(args: Array<String>) {
model("intentions/makeTypeExplicitInLambda", testMethod = "doTestMakeTypeExplicitInLambda")
model("intentions/makeTypeImplicitInLambda", testMethod = "doTestMakeTypeImplicitInLambda")
model("intentions/convertToForEachLoop", testMethod = "doTestConvertToForEachLoop")
model("intentions/convertToForEachFunctionCall", testMethod = "doTestConvertToForEachFunctionCall")
}
testClass(javaClass<AbstractJetInspectionTest>()) {