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