dbb28c571b
Replaces an expression of form x.forEach { … } with for (a in x) { … }.
3 lines
55 B
Plaintext
3 lines
55 B
Plaintext
fun foo() {
|
|
<spot>x.forEach { a -> a.bar() }</spot>
|
|
} |