Name Suggester: Suggest parameter name for the corresponding argument expression

#KT-8111 Fixed
This commit is contained in:
Alexey Sedunov
2015-11-10 15:07:22 +03:00
parent f21603daf2
commit aeee8bafe6
20 changed files with 137 additions and 51 deletions
@@ -1,6 +1,6 @@
open class A(n: Int)
fun foo() {
val i = 1
val x = object : A(i) {}
val n = 1
val x = object : A(n) {}
}