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:
Dmitry Jemerov
2015-04-29 19:40:31 +02:00
parent 0582d1947d
commit b1c4a5670a
9 changed files with 57 additions and 41 deletions
@@ -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())
}