Refactoring: "replace with operator assignment" is now an inspection

This commit is contained in:
Mikhail Glukhikh
2017-12-20 20:01:12 +03:00
parent c995f70631
commit 35d85ddd1f
26 changed files with 131 additions and 127 deletions
@@ -0,0 +1,5 @@
fun foo() {
var y = 0
val x = 0
<caret>y = y + x
}