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,13 @@
annotation class Anno {
constructor(param1: kotlin.String, param2: kotlin.Int)
val param1: kotlin.String
val param2: kotlin.Int
}
@Anno(param1 = "param", param2 = 2)
class X {
@Anno(param1 = "funparam", param2 = 3)
fun x()
}