[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
@@ -0,0 +1,60 @@
library {
// module name: <annotatedEnumEntry.kt>
library fragment {
// package name: test
// class name: test/Anno
// class name: test/Bnno
// class name: test/Eee
// signature: test/Anno|null[0]
public final annotation class test/Anno : kotlin/Annotation {
// signature: test/Anno.<init>|-2457917570611619111[0]
public constructor(value: kotlin/String /* = ... */, x: kotlin/Int /* = ... */)
// signature: test/Anno.value|1987073854177347439[0]
public final val value: kotlin/String
// signature: test/Anno.value.<get-value>|3260093555963109437[0]
public final get
// signature: test/Anno.x|-8060530855978347579[0]
public final val x: kotlin/Int
// signature: test/Anno.x.<get-x>|1482705010654679335[0]
public final get
}
// signature: test/Bnno|null[0]
public final annotation class test/Bnno : kotlin/Annotation {
// signature: test/Bnno.<init>|-5645683436151566731[0]
public constructor()
}
// signature: test/Eee|null[0]
public final enum class test/Eee : kotlin/Enum<test/Eee> {
// signature: test/Eee.<init>|-5645683436151566731[0]
private constructor()
// signature: test/Eee.Entry1|null[0]
@test/Anno
Entry1,
// signature: test/Eee.Entry2|null[0]
Entry2,
// signature: test/Eee.Entry3|null[0]
@test/Anno(value = "3")
@test/Bnno
Entry3,
// signature: test/Eee.Entry4|null[0]
@test/Anno(value = "4", x = 4)
Entry4,
// has Enum.entries
}
}
}