eb3ddf50bf
This takes an expression of the form a += b and converts it to an expression form a = a + b.
6 lines
77 B
Kotlin
6 lines
77 B
Kotlin
fun foo() {
|
|
var x = 0
|
|
val a = 1
|
|
val b = 1
|
|
<caret>x += a / b
|
|
} |