Renamed intention

This commit is contained in:
Valentin Kipyatkov
2015-04-29 19:45:27 +03:00
parent c617d5256e
commit 05b6181d20
14 changed files with 11 additions and 11 deletions
@@ -0,0 +1 @@
org.jetbrains.kotlin.idea.intentions.ReplaceWithOrdinaryAssignmentIntention
@@ -0,0 +1,6 @@
fun foo() {
var x = 0
val a = 1
val b = 1
x <caret>+= a / b
}
@@ -0,0 +1,6 @@
fun foo() {
var x = 0
val a = 1
val b = 1
x = x + a / b
}
@@ -0,0 +1,5 @@
// IS_APPLICABLE: false
fun foo() {
var x = 0
x <caret>+ 1
}
@@ -0,0 +1,7 @@
// IS_APPLICABLE: false
fun foo() {
var x = 0
val a = 1
val b = 1
x <caret>= a / b
}
@@ -0,0 +1,4 @@
fun foo() {
var x = 0
x <caret>+= 1
}
@@ -0,0 +1,4 @@
fun foo() {
var x = 0
x <caret>= x + 1
}