eb3ddf50bf
This takes an expression of the form a += b and converts it to an expression form a = a + b.
4 lines
47 B
Plaintext
4 lines
47 B
Plaintext
fun foo() {
|
|
var x = 0
|
|
<spot>x += y</spot>
|
|
} |