249af96d3c
Replaces a statement of the form a = a + b with a statement of the form a += b.
5 lines
62 B
Kotlin
5 lines
62 B
Kotlin
fun foo() {
|
|
var y = 0
|
|
val x = 0
|
|
<caret>y = y + x
|
|
} |