Initial implementation of faster component function usage search

This commit is contained in:
Valentin Kipyatkov
2016-08-23 22:52:23 +03:00
parent 77bb9b8092
commit 1674beb64b
32 changed files with 609 additions and 121 deletions
+10
View File
@@ -0,0 +1,10 @@
class A
operator fun A.<caret>component1(): Int = 0
operator fun A.component2(): Int = 1
fun test() {
val a = A()
a.component1()
val (x, y) = a
}