[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,10 +1,26 @@
package <root> {
class Foo constructor() {
fun f1()
infix fun f2(x: Int)
suspend fun f3()
tailrec fun f4()
fun f5(vararg x: Int)
operator fun plus(x: Int)
library {
// module name: <FunctionModifiers.kt>
library fragment {
// package name: <root>
// class name: Foo
public final class Foo : kotlin/Any {
public constructor()
public final fun f1(): kotlin/Unit
public final infix fun f2(x: kotlin/Int): kotlin/Unit
public final suspend fun f3(): kotlin/Unit
public final tailrec fun f4(): kotlin/Unit
public final fun f5(vararg x: kotlin/Int /* kotlin/IntArray */): kotlin/Unit
public final operator fun plus(x: kotlin/Int): kotlin/Unit
}
}
}
}