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
@@ -7,9 +7,7 @@ fun A.component1() = 1
fun A.component2() = 1
fun main(args: Array<String>) {
val (a,<caret> b) = A()
val (a, <caret>b) = A()
}
// MULTIRESOLVE
// REF: (for A in a).component1()
// REF: (for A in a).component2()