[FIR-IDE] Add DestructuringDeclarationEntry to SymbolProvider

This commit is contained in:
Kristoffer Andersen
2022-05-10 14:11:39 +02:00
committed by Ilya Kirillov
parent b6371a5b9a
commit 3af0e57406
11 changed files with 203 additions and 4 deletions
@@ -0,0 +1,15 @@
fun destruct(): kotlin.Int
class P {
constructor(x: kotlin.Int, y: kotlin.Int)
val x: kotlin.Int
val y: kotlin.Int
operator fun component1(): kotlin.Int
operator fun component2(): kotlin.Int
fun copy(x: kotlin.Int = ..., y: kotlin.Int = ...): P
}