[KLIB tool] Update KLIB metadata dump tests
^KT-62340
This commit is contained in:
committed by
Space Team
parent
f9f97f2050
commit
07767f88e2
Vendored
+29
-8
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user