Analysis API: pretty print declarations additionaly to debug rendering in some tests

This commit is contained in:
Ilya Kirillov
2021-11-30 13:16:46 +01:00
parent bad91915a6
commit 6e4c87f138
81 changed files with 918 additions and 23 deletions
@@ -0,0 +1,17 @@
class MyColor {
constructor(x: kotlin.Int, y: kotlin.Int, z: kotlin.Int)
val x: kotlin.Int
val y: kotlin.Int
val z: kotlin.Int
}
class Some {
val delegate: MyColor
val lambda: kotlin.Lazy<MyColor>
val nonLazy: MyColor
}