[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,31 +1,76 @@
package test {
// Signature: test/A|null[0]
abstract class A constructor() {
// Signature: test/A.a|{}a[0]
abstract val a: Int
// Signature: test/A.b|{}b[0]
abstract var b: Int
// Signature: test/A.b.<set-b>|<set-b>(kotlin.Int){}[0]
protected set
// Signature: test/A.c|{}c[0]
val c: Int
// Signature: test/A.d|{}d[0]
val d: Int
// Signature: test/A.e|{}e[0]
var e: Int
// Signature: test/A.f|{}f[0]
var f: Int
// Signature: test/A.f.<set-f>|<set-f>(kotlin.Int){}[0]
private set
// Signature: test/A.g|{}g[0]
open val g: Int
// Signature: test/A.h|{}h[0]
open val h: Int
// Signature: test/A.k|{}k[0]
open var k: Int
// Signature: test/A.l|{}l[0]
open var l: Int
// Signature: test/A.l.<set-l>|<set-l>(kotlin.Int){}[0]
protected set
library {
// module name: <property_accessors.kt>
library fragment {
// package name: test
// class name: test/A
// signature: test/A|null[0]
public abstract class test/A : kotlin/Any {
// signature: test/A.<init>|<init>(){}[0]
public constructor()
// signature: test/A.a|{}a[0]
public abstract val a: kotlin/Int
// signature: test/A.a.<get-a>|<get-a>(){}[0]
public abstract get
// signature: test/A.b|{}b[0]
public abstract var b: kotlin/Int
// signature: test/A.b.<get-b>|<get-b>(){}[0]
public abstract get
// signature: test/A.b.<set-b>|<set-b>(kotlin.Int){}[0]
protected abstract /* non-default */ set(<set-?>: kotlin/Int)
// signature: test/A.c|{}c[0]
public final val c: kotlin/Int
// signature: test/A.c.<get-c>|<get-c>(){}[0]
public final get
// signature: test/A.d|{}d[0]
public final val d: kotlin/Int
// signature: test/A.d.<get-d>|<get-d>(){}[0]
public final /* non-default */ get
// signature: test/A.e|{}e[0]
public final var e: kotlin/Int
// signature: test/A.e.<get-e>|<get-e>(){}[0]
public final /* non-default */ get
// signature: test/A.e.<set-e>|<set-e>(kotlin.Int){}[0]
public final /* non-default */ set(value: kotlin/Int)
// signature: test/A.f|{}f[0]
public final var f: kotlin/Int
// signature: test/A.f.<get-f>|<get-f>(){}[0]
public final get
// signature: test/A.f.<set-f>|<set-f>(kotlin.Int){}[0]
private final /* non-default */ set(<set-?>: kotlin/Int)
// signature: test/A.g|{}g[0]
public open val g: kotlin/Int
// signature: test/A.g.<get-g>|<get-g>(){}[0]
public open get
// signature: test/A.h|{}h[0]
public open val h: kotlin/Int
// signature: test/A.h.<get-h>|<get-h>(){}[0]
public open /* non-default */ get
// signature: test/A.k|{}k[0]
public open var k: kotlin/Int
// signature: test/A.k.<get-k>|<get-k>(){}[0]
public open /* non-default */ get
// signature: test/A.k.<set-k>|<set-k>(kotlin.Int){}[0]
public open /* non-default */ set(value: kotlin/Int)
// signature: test/A.l|{}l[0]
public open var l: kotlin/Int
// signature: test/A.l.<get-l>|<get-l>(){}[0]
public open get
// signature: test/A.l.<set-l>|<set-l>(kotlin.Int){}[0]
protected open /* non-default */ set(<set-?>: kotlin/Int)
}
}
}