[KLIB tool] Update KLIB metadata dump tests

^KT-62340
This commit is contained in:
Dmitriy Dolovov
2024-02-09 15:23:40 +01:00
committed by Space Team
parent f9f97f2050
commit 07767f88e2
170 changed files with 9177 additions and 2207 deletions
@@ -1,9 +1,30 @@
package test {
annotation class Anno constructor(value: String) : Annotation {
val value: String
library {
// module name: <propertyAccessorAnnotations.kt>
library fragment {
// package name: test
// class name: test/Anno
public final annotation class test/Anno : kotlin/Annotation {
public constructor(value: kotlin/String)
public final val value: kotlin/String
public final get
}
@Anno(value = "property") val v1: String = ""
var v2: String
@Anno(value = "getter") get
@Anno(value = "setter") set
}
package {
@test/Anno(value = "property")
public final val v1: kotlin/String /* = "" */
public final get
public final var v2: kotlin/String
@test/Anno(value = "getter")
public final /* non-default */ get
@test/Anno(value = "setter")
public final /* non-default */ set(@test/Anno(value = "setparam") value: kotlin/String)
}
}
}