provide element type name for multi-declaration entries; enable in-place rename for those; show local properties as "variable"
#KT-7627 Fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun xyzzy(x: Pair<Int, String>) {
|
||||
val (bar, ba<caret>z) = x
|
||||
println(baz)
|
||||
println(baz.length())
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun xyzzy(x: Pair<Int, String>) {
|
||||
val (bar, foo) = x
|
||||
println(foo)
|
||||
println(foo.length())
|
||||
}
|
||||
Reference in New Issue
Block a user