From 813060fef3128e9d6a9a3fd03aef91e0b982380c Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Fri, 22 Apr 2016 12:21:33 +0300 Subject: [PATCH] Added TODO --- .../loopToCallChain/result/AddToCollectionTransformation.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/AddToCollectionTransformation.kt b/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/AddToCollectionTransformation.kt index 4ee580ab2b6..5eeeab60db0 100644 --- a/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/AddToCollectionTransformation.kt +++ b/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/AddToCollectionTransformation.kt @@ -111,6 +111,7 @@ class AddToCollectionTransformation( return ResultTransformationMatch(AddToCollectionTransformation(state.outerLoop, targetCollection)) } else { + //TODO: recognize "?: continue" in the argument return ResultTransformationMatch(MapToTransformation.create( state.outerLoop, state.inputVariable, state.indexVariable, targetCollection, argumentValue, mapNotNull = false)) }