OperatorToFunctionIntention and SwapBinaryExpressionIntention: more narrow availability range + no i18n

This commit is contained in:
Valentin Kipyatkov
2015-04-14 15:10:51 +03:00
parent 00a4beae1d
commit dc6c6f13d5
25 changed files with 117 additions and 91 deletions
@@ -2,5 +2,5 @@
// IS_APPLICABLE: false
fun foo() {
val bar = { x: Int -> x + 1 }
val incremented = listOf(1, 2, 3).<caret>map(bar)
val incremented = listOf(1, 2, 3).map<caret>(bar)
}