Renamed intention

This commit is contained in:
Valentin Kipyatkov
2015-04-29 19:39:38 +03:00
parent 435e9fed3f
commit 475a361b32
23 changed files with 18 additions and 18 deletions
@@ -0,0 +1,4 @@
fun foo(x: Int) {
var y = 1
y += x
}
@@ -0,0 +1,4 @@
fun foo(x: Int) {
var y = 1
<spot>y = y + x</spot>
}
@@ -0,0 +1,5 @@
<html>
<body>
This intention transforms a modification of a variable with a simple assignment into an operation-assignment.
</body>
</html>