Add "replace map.put with assignment" to J2K

Related to KT-21502
This commit is contained in:
Mikhail Glukhikh
2017-12-05 17:29:58 +03:00
parent 8c305a137f
commit a90e3c2e45
9 changed files with 58 additions and 47 deletions
@@ -2,5 +2,5 @@
fun foo() {
var map = mutableMapOf(42 to "foo")
map.put<caret>(60, "bar")
map.<caret>put(60, "bar")
}