Use one KtDestructuringDeclarationReference per each entry - better highlight usages and other actions

This commit is contained in:
Valentin Kipyatkov
2016-08-29 23:07:48 +03:00
parent 9cd7e9d519
commit b332867b25
11 changed files with 66 additions and 74 deletions
+1 -3
View File
@@ -7,9 +7,7 @@ class MyPair {
fun main(args: Array<String>) {
val p = MyPair()
val (a, b<caret>) = p
val (a, <caret>b) = p
}
// MULTIRESOLVE
// REF: (in a.MyPair).component1()
// REF: (in a.MyPair).component2()