dbb28c571b
Replaces an expression of form x.forEach { … } with for (a in x) { … }.
5 lines
46 B
Plaintext
5 lines
46 B
Plaintext
fun foo() {
|
|
for (a in x) {
|
|
a.bar()
|
|
}
|
|
} |