[klib] Test signature descriptions in irText tests
KT-59486
This commit is contained in:
committed by
Space Team
parent
6142d75bb4
commit
5e63f7627f
Vendored
+2
@@ -5,6 +5,7 @@ open annotation class SomeAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: SomeAnn#<init>(){}
|
||||
// Public signature: /SomeAnn.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -17,6 +18,7 @@ class My {
|
||||
// CHECK:
|
||||
// Mangled name: My#<init>(){}
|
||||
// Public signature: /My.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
|
||||
Vendored
+13
@@ -5,18 +5,22 @@ open annotation class A1 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A1{}x
|
||||
// Public signature: /A1.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A1#<get-x>(){}kotlin.Int
|
||||
// Public signature: /A1.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A1#<get-x>(){}
|
||||
// Public signature: /A1.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A1#<init>(kotlin.Int){}
|
||||
// Public signature: /A1.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(x: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,18 +32,22 @@ open annotation class A2 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A2{}a
|
||||
// Public signature: /A2.a|-1200697420457237799[0]
|
||||
// Public signature debug description: {}a
|
||||
val a: A1
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A2#<get-a>(){}A1
|
||||
// Public signature: /A2.a.<get-a>|7276890167111587032[0]
|
||||
// Public signature debug description: <get-a>(){}A1
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A2#<get-a>(){}
|
||||
// Public signature: /A2.a.<get-a>|6785176174175479410[0]
|
||||
// Public signature debug description: <get-a>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A2#<init>(A1){}
|
||||
// Public signature: /A2.<init>|1733910541133145704[0]
|
||||
// Public signature debug description: <init>(A1){}
|
||||
constructor(a: A1) /* primary */
|
||||
|
||||
}
|
||||
@@ -51,18 +59,22 @@ open annotation class AA : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: AA{}xs
|
||||
// Public signature: /AA.xs|1063330853857063704[0]
|
||||
// Public signature debug description: {}xs
|
||||
val xs: Array<A1>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: AA#<get-xs>(){}kotlin.Array<A1>
|
||||
// Public signature: /AA.xs.<get-xs>|466319571514416331[0]
|
||||
// Public signature debug description: <get-xs>(){}kotlin.Array<A1>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: AA#<get-xs>(){}
|
||||
// Public signature: /AA.xs.<get-xs>|-6958094100501701183[0]
|
||||
// Public signature debug description: <get-xs>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: AA#<init>(kotlin.Array<A1>){}
|
||||
// Public signature: /AA.<init>|-748301654061855634[0]
|
||||
// Public signature debug description: <init>(kotlin.Array<A1>){}
|
||||
constructor(xs: Array<A1>) /* primary */
|
||||
|
||||
}
|
||||
@@ -70,6 +82,7 @@ open annotation class AA : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #test(){}
|
||||
// Public signature: /test|6620506149988718649[0]
|
||||
// Public signature debug description: test(){}
|
||||
@A2(a = A1(x = 42))
|
||||
@AA(xs = [A1(x = 1), A1(x = 2)])
|
||||
fun test(): Unit
|
||||
|
||||
+12
@@ -5,30 +5,37 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A{}x
|
||||
// Public signature: /A.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-x>(){}kotlin.String
|
||||
// Public signature: /A.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-x>(){}
|
||||
// Public signature: /A.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A{}y
|
||||
// Public signature: /A.y|3625903257357557171[0]
|
||||
// Public signature debug description: {}y
|
||||
val y: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-y>(){}kotlin.Int
|
||||
// Public signature: /A.y.<get-y>|-6745575372101973707[0]
|
||||
// Public signature debug description: <get-y>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-y>(){}
|
||||
// Public signature: /A.y.<get-y>|-7902422373892128922[0]
|
||||
// Public signature debug description: <get-y>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(kotlin.String;kotlin.Int){}
|
||||
// Public signature: /A.<init>|-2457917570611619111[0]
|
||||
// Public signature debug description: <init>(kotlin.String;kotlin.Int){}
|
||||
constructor(x: String, y: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -36,30 +43,35 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@A(x = "abc", y = 123)
|
||||
fun test1(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test2(){}
|
||||
// Public signature: /test2|4279114864133353152[0]
|
||||
// Public signature debug description: test2(){}
|
||||
@A(x = "def")
|
||||
fun test2(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test3(){}
|
||||
// Public signature: /test3|-3759735065270951803[0]
|
||||
// Public signature debug description: test3(){}
|
||||
@A(x = "ghi")
|
||||
fun test3(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test4(){}
|
||||
// Public signature: /test4|5588455914500386239[0]
|
||||
// Public signature debug description: test4(){}
|
||||
@A(, y = 456)
|
||||
fun test4(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test5(){}
|
||||
// Public signature: /test5|-2461239215881954159[0]
|
||||
// Public signature debug description: test5(){}
|
||||
@A
|
||||
fun test5(): Unit
|
||||
|
||||
|
||||
Vendored
+7
@@ -5,18 +5,22 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A{}xs
|
||||
// Public signature: /A.xs|1063330853857063704[0]
|
||||
// Public signature debug description: {}xs
|
||||
val xs: Array<out String>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-xs>(){}kotlin.Array<out|kotlin.String>
|
||||
// Public signature: /A.xs.<get-xs>|9188548163055185324[0]
|
||||
// Public signature debug description: <get-xs>(){}kotlin.Array<out|kotlin.String>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-xs>(){}
|
||||
// Public signature: /A.xs.<get-xs>|-6958094100501701183[0]
|
||||
// Public signature debug description: <get-xs>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(kotlin.Array<out|kotlin.String>...){}
|
||||
// Public signature: /A.<init>|-6780234697714860085[0]
|
||||
// Public signature debug description: <init>(kotlin.Array<out|kotlin.String>...){}
|
||||
constructor(vararg xs: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -24,18 +28,21 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@A(xs = ["abc", "def"])
|
||||
fun test1(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test2(){}
|
||||
// Public signature: /test2|4279114864133353152[0]
|
||||
// Public signature debug description: test2(){}
|
||||
@A(xs = ["abc"])
|
||||
fun test2(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test3(){}
|
||||
// Public signature: /test3|-3759735065270951803[0]
|
||||
// Public signature debug description: test3(){}
|
||||
@A(xs = [])
|
||||
fun test3(): Unit
|
||||
|
||||
|
||||
compiler/testData/ir/irText/declarations/annotations/argWithDefaultValueInAnnotationClass.sig.kt.txt
Vendored
+3
@@ -5,15 +5,18 @@ open annotation class ModuleInfo : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: ModuleInfo{}keyBind
|
||||
// Public signature: /ModuleInfo.keyBind|-3946407517690370511[0]
|
||||
// Public signature debug description: {}keyBind
|
||||
val keyBind: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ModuleInfo#<get-keyBind>(){}kotlin.Int
|
||||
// Public signature: /ModuleInfo.keyBind.<get-keyBind>|-5105783608349623557[0]
|
||||
// Public signature debug description: <get-keyBind>(){}kotlin.Int
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ModuleInfo#<init>(kotlin.Int){}
|
||||
// Public signature: /ModuleInfo.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(keyBind: Int) /* primary */
|
||||
|
||||
}
|
||||
|
||||
+10
@@ -5,18 +5,22 @@ open annotation class TestAnnWithIntArray : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnnWithIntArray{}x
|
||||
// Public signature: /TestAnnWithIntArray.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: IntArray
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnnWithIntArray#<get-x>(){}kotlin.IntArray
|
||||
// Public signature: /TestAnnWithIntArray.x.<get-x>|-5699461780158713262[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.IntArray
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnnWithIntArray#<get-x>(){}
|
||||
// Public signature: /TestAnnWithIntArray.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnnWithIntArray#<init>(kotlin.IntArray){}
|
||||
// Public signature: /TestAnnWithIntArray.<init>|6811679238332965682[0]
|
||||
// Public signature debug description: <init>(kotlin.IntArray){}
|
||||
constructor(x: IntArray) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,18 +32,22 @@ open annotation class TestAnnWithStringArray : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnnWithStringArray{}x
|
||||
// Public signature: /TestAnnWithStringArray.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Array<String>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnnWithStringArray#<get-x>(){}kotlin.Array<kotlin.String>
|
||||
// Public signature: /TestAnnWithStringArray.x.<get-x>|-709321774523398734[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Array<kotlin.String>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnnWithStringArray#<get-x>(){}
|
||||
// Public signature: /TestAnnWithStringArray.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnnWithStringArray#<init>(kotlin.Array<kotlin.String>){}
|
||||
// Public signature: /TestAnnWithStringArray.<init>|5393043463829665764[0]
|
||||
// Public signature debug description: <init>(kotlin.Array<kotlin.String>){}
|
||||
constructor(x: Array<String>) /* primary */
|
||||
|
||||
}
|
||||
@@ -47,6 +55,7 @@ open annotation class TestAnnWithStringArray : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@TestAnnWithIntArray(x = [1, 2, 3])
|
||||
@TestAnnWithStringArray(x = ["a", "b", "c"])
|
||||
fun test1(): Unit
|
||||
@@ -54,6 +63,7 @@ fun test1(): Unit
|
||||
// CHECK:
|
||||
// Mangled name: #test2(){}
|
||||
// Public signature: /test2|4279114864133353152[0]
|
||||
// Public signature debug description: test2(){}
|
||||
@TestAnnWithIntArray(x = [4, 5, 6])
|
||||
@TestAnnWithStringArray(x = ["d", "e", "f"])
|
||||
fun test2(): Unit
|
||||
|
||||
+6
@@ -5,18 +5,22 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A{}klass
|
||||
// Public signature: /A.klass|6015918431206184939[0]
|
||||
// Public signature debug description: {}klass
|
||||
val klass: KClass<*>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-klass>(){}kotlin.reflect.KClass<*>
|
||||
// Public signature: /A.klass.<get-klass>|5739372350059323846[0]
|
||||
// Public signature debug description: <get-klass>(){}kotlin.reflect.KClass<*>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-klass>(){}
|
||||
// Public signature: /A.klass.<get-klass>|4259458871347467473[0]
|
||||
// Public signature debug description: <get-klass>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(kotlin.reflect.KClass<*>){}
|
||||
// Public signature: /A.<init>|5783844857148764471[0]
|
||||
// Public signature debug description: <init>(kotlin.reflect.KClass<*>){}
|
||||
constructor(klass: KClass<*>) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,6 +32,7 @@ class C {
|
||||
// CHECK:
|
||||
// Mangled name: C#<init>(){}
|
||||
// Public signature: /C.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -35,6 +40,7 @@ class C {
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@A(klass = C::class)
|
||||
fun test1(): Unit
|
||||
|
||||
|
||||
+32
@@ -5,18 +5,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.String
|
||||
// Public signature: /TestAnn.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.String){}
|
||||
// Public signature: /TestAnn.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -29,6 +33,7 @@ open annotation class TestAnnotation : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnnotation#<init>(){}
|
||||
// Public signature: /TestAnnotation.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -45,6 +50,7 @@ class Host {
|
||||
// CHECK:
|
||||
// Mangled name: Host.TestCompanion#<init>(){}
|
||||
// Public signature: /Host.TestCompanion.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
private constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -52,6 +58,7 @@ class Host {
|
||||
// CHECK:
|
||||
// Mangled name: Host#<init>(){}
|
||||
// Public signature: /Host.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -64,6 +71,7 @@ class TestClass {
|
||||
// CHECK:
|
||||
// Mangled name: TestClass#<init>(){}
|
||||
// Public signature: /TestClass.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -76,94 +84,117 @@ enum class TestEnum : Enum<TestEnum> {
|
||||
// CHECK:
|
||||
// Mangled name: TestEnum#<init>(){}
|
||||
// Public signature: /TestEnum.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
private constructor() /* primary */
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#valueOf#static(kotlin.String){}TestEnum
|
||||
// Public signature: /TestEnum.valueOf|1811575739170804829[0]
|
||||
// Public signature debug description: valueOf#static(kotlin.String){}TestEnum
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum#valueOf#static(kotlin.String){}
|
||||
// Public signature: /TestEnum.valueOf|-4683474617854611729[0]
|
||||
// Public signature debug description: valueOf#static(kotlin.String){}
|
||||
fun valueOf(value: String): TestEnum
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#values#static(){}kotlin.Array<TestEnum>
|
||||
// Public signature: /TestEnum.values|-4299804782350326897[0]
|
||||
// Public signature debug description: values#static(){}kotlin.Array<TestEnum>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum#values#static(){}
|
||||
// Public signature: /TestEnum.values|-8715569000920726747[0]
|
||||
// Public signature debug description: values#static(){}
|
||||
fun values(): Array<TestEnum>
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#clone(){}kotlin.Any
|
||||
// Public signature: /TestEnum.clone|-6903128697527593263[0]
|
||||
// Public signature debug description: clone(){}kotlin.Any
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum#compareTo(TestEnum){}
|
||||
// Public signature: /TestEnum.compareTo|7350720606720122863[0]
|
||||
// Public signature debug description: compareTo(TestEnum){}
|
||||
protected /* fake */ override fun clone(): Any
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#compareTo(TestEnum){}kotlin.Int
|
||||
// Public signature: /TestEnum.compareTo|7559751212169934687[0]
|
||||
// Public signature debug description: compareTo(TestEnum){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum#equals(kotlin.Any?){}
|
||||
// Public signature: /TestEnum.equals|4638265728071529943[0]
|
||||
// Public signature debug description: equals(kotlin.Any?){}
|
||||
/* fake */ override operator fun compareTo(other: TestEnum): Int
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#equals(kotlin.Any?){}kotlin.Boolean
|
||||
// Public signature: /TestEnum.equals|722809408929142791[0]
|
||||
// Public signature debug description: equals(kotlin.Any?){}kotlin.Boolean
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum#hashCode(){}
|
||||
// Public signature: /TestEnum.hashCode|3409210261493131192[0]
|
||||
// Public signature debug description: hashCode(){}
|
||||
/* fake */ override operator fun equals(other: Any?): Boolean
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#hashCode(){}kotlin.Int
|
||||
// Public signature: /TestEnum.hashCode|-8048879360829830756[0]
|
||||
// Public signature debug description: hashCode(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum#toString(){}
|
||||
// Public signature: /TestEnum.toString|-1522858123163872138[0]
|
||||
// Public signature debug description: toString(){}
|
||||
/* fake */ override fun hashCode(): Int
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#toString(){}kotlin.String
|
||||
// Public signature: /TestEnum.toString|6958853723545266802[0]
|
||||
// Public signature debug description: toString(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum#static{}entries
|
||||
// Public signature: /TestEnum.entries|-5134227801081826149[0]
|
||||
// Public signature debug description: #static{}entries
|
||||
/* fake */ override fun toString(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestEnum#static{}entries
|
||||
// Public signature: /TestEnum.entries|-5134227801081826149[0]
|
||||
// Public signature debug description: #static{}entries
|
||||
val entries: EnumEntries<TestEnum>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#<get-entries>#static(){}kotlin.enums.EnumEntries<TestEnum>
|
||||
// Public signature: /TestEnum.entries.<get-entries>|6962221716588245012[0]
|
||||
// Public signature debug description: <get-entries>#static(){}kotlin.enums.EnumEntries<TestEnum>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum{}name
|
||||
// Public signature: /TestEnum.name|4231860309499509769[0]
|
||||
// Public signature debug description: {}name
|
||||
get(): EnumEntries<TestEnum>
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestEnum{}name
|
||||
// Public signature: /TestEnum.name|4231860309499509769[0]
|
||||
// Public signature debug description: {}name
|
||||
/* fake */ override val name: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#<get-name>(){}kotlin.String
|
||||
// Public signature: /TestEnum.name.<get-name>|-8006111524522882650[0]
|
||||
// Public signature debug description: <get-name>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestEnum{}ordinal
|
||||
// Public signature: /TestEnum.ordinal|1912745122988592376[0]
|
||||
// Public signature debug description: {}ordinal
|
||||
/* fake */ override get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestEnum{}ordinal
|
||||
// Public signature: /TestEnum.ordinal|1912745122988592376[0]
|
||||
// Public signature debug description: {}ordinal
|
||||
/* fake */ override val ordinal: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestEnum#<get-ordinal>(){}kotlin.Int
|
||||
// Public signature: /TestEnum.ordinal.<get-ordinal>|-6902664390061762634[0]
|
||||
// Public signature debug description: <get-ordinal>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestInterface
|
||||
// Public signature: /TestInterface|null[0]
|
||||
@@ -187,6 +218,7 @@ object TestObject {
|
||||
// CHECK:
|
||||
// Mangled name: TestObject#<init>(){}
|
||||
// Public signature: /TestObject.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
private constructor() /* primary */
|
||||
|
||||
}
|
||||
|
||||
+9
@@ -5,18 +5,22 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A{}x
|
||||
// Public signature: /A.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-x>(){}kotlin.Int
|
||||
// Public signature: /A.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-x>(){}
|
||||
// Public signature: /A.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(kotlin.Int){}
|
||||
// Public signature: /A.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(x: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -24,24 +28,29 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@A(x = 1)
|
||||
fun test1(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test2(){}
|
||||
// Public signature: /test2|4279114864133353152[0]
|
||||
// Public signature debug description: test2(){}
|
||||
@A(x = 2)
|
||||
fun test2(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: {}ONE
|
||||
// Public signature: /ONE|5698484753436154102[0]
|
||||
// Public signature debug description: {}ONE
|
||||
const val ONE: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-ONE>(){}kotlin.Int
|
||||
// Public signature: /ONE.<get-ONE>|7844388037784691246[0]
|
||||
// Public signature debug description: <get-ONE>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-ONE>(){}
|
||||
// Public signature: /ONE.<get-ONE>|6594203029520379115[0]
|
||||
// Public signature debug description: <get-ONE>(){}
|
||||
get
|
||||
|
||||
|
||||
Vendored
+6
@@ -5,18 +5,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.Int
|
||||
// Public signature: /TestAnn.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.Int){}
|
||||
// Public signature: /TestAnn.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(x: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,11 +32,13 @@ class TestClass {
|
||||
// CHECK:
|
||||
// Mangled name: TestClass#<init>(){}
|
||||
// Public signature: /TestClass.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
@TestAnn(x = 1)
|
||||
constructor() /* primary */
|
||||
// CHECK:
|
||||
// Mangled name: TestClass#<init>(kotlin.Int){}
|
||||
// Public signature: /TestClass.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
@TestAnn(x = 2)
|
||||
constructor(x: Int)
|
||||
|
||||
|
||||
Vendored
+4
@@ -1,6 +1,7 @@
|
||||
// CHECK:
|
||||
// Mangled name: {}test1
|
||||
// Public signature: /test1|6005685442305498193[0]
|
||||
// Public signature debug description: {}test1
|
||||
val test1: Int /* by */
|
||||
field
|
||||
// CHECK JVM_IR:
|
||||
@@ -14,9 +15,11 @@ val test1: Int /* by */
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-test1>(){}kotlin.Int
|
||||
// Public signature: /test1.<get-test1>|3978508226793108919[0]
|
||||
// Public signature debug description: <get-test1>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-test1>(){}
|
||||
// Public signature: /test1.<get-test1>|-5735092642142423279[0]
|
||||
// Public signature debug description: <get-test1>(){}
|
||||
get(): Int
|
||||
|
||||
// CHECK:
|
||||
@@ -26,6 +29,7 @@ open annotation class Ann : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: Ann#<init>(){}
|
||||
// Public signature: /Ann.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
|
||||
+19
@@ -1,31 +1,38 @@
|
||||
// CHECK:
|
||||
// Mangled name: {}test1
|
||||
// Public signature: /test1|6005685442305498193[0]
|
||||
// Public signature debug description: {}test1
|
||||
val test1: Int /* by */
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-test1>(){}kotlin.Int
|
||||
// Public signature: /test1.<get-test1>|3978508226793108919[0]
|
||||
// Public signature debug description: <get-test1>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-test1>(){}
|
||||
// Public signature: /test1.<get-test1>|-5735092642142423279[0]
|
||||
// Public signature debug description: <get-test1>(){}
|
||||
@A(x = "test1.get")
|
||||
get(): Int
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: {}test2
|
||||
// Public signature: /test2|2517758057000911509[0]
|
||||
// Public signature debug description: {}test2
|
||||
var test2: Int /* by */
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-test2>(){}kotlin.Int
|
||||
// Public signature: /test2.<get-test2>|-8779933517717592707[0]
|
||||
// Public signature debug description: <get-test2>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-test2>(){}
|
||||
// Public signature: /test2.<get-test2>|-5218942532816206869[0]
|
||||
// Public signature debug description: <get-test2>(){}
|
||||
@A(x = "test2.get")
|
||||
get(): Int
|
||||
// CHECK:
|
||||
// Mangled name: #<set-test2>(kotlin.Int){}
|
||||
// Public signature: /test2.<set-test2>|1925150309265265312[0]
|
||||
// Public signature debug description: <set-test2>(kotlin.Int){}
|
||||
@A(x = "test2.set")
|
||||
set(@A(x = "test2.set.param") <set-?>: Int): Unit
|
||||
|
||||
@@ -36,18 +43,22 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A{}x
|
||||
// Public signature: /A.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-x>(){}kotlin.String
|
||||
// Public signature: /A.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-x>(){}
|
||||
// Public signature: /A.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(kotlin.String){}
|
||||
// Public signature: /A.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -59,35 +70,43 @@ class Cell {
|
||||
// CHECK:
|
||||
// Mangled name: Cell{}value
|
||||
// Public signature: /Cell.value|1987073854177347439[0]
|
||||
// Public signature debug description: {}value
|
||||
var value: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Cell#<get-value>(){}kotlin.Int
|
||||
// Public signature: /Cell.value.<get-value>|-5900028706170996[0]
|
||||
// Public signature debug description: <get-value>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Cell#<get-value>(){}
|
||||
// Public signature: /Cell.value.<get-value>|3260093555963109437[0]
|
||||
// Public signature debug description: <get-value>(){}
|
||||
get
|
||||
// CHECK:
|
||||
// Mangled name: Cell#<set-value>(kotlin.Int){}
|
||||
// Public signature: /Cell.value.<set-value>|-195057410739577239[0]
|
||||
// Public signature debug description: <set-value>(kotlin.Int){}
|
||||
set
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: Cell#<init>(kotlin.Int){}
|
||||
// Public signature: /Cell.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(value: Int) /* primary */
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Cell#getValue(kotlin.Any?;kotlin.Any?){}kotlin.Int
|
||||
// Public signature: /Cell.getValue|-3377375928534350672[0]
|
||||
// Public signature debug description: getValue(kotlin.Any?;kotlin.Any?){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Cell#getValue(kotlin.Any?;kotlin.Any?){}
|
||||
// Public signature: /Cell.getValue|-9077843357189755365[0]
|
||||
// Public signature debug description: getValue(kotlin.Any?;kotlin.Any?){}
|
||||
operator fun getValue(thisRef: Any?, kProp: Any?): Int
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: Cell#setValue(kotlin.Any?;kotlin.Any?;kotlin.Int){}
|
||||
// Public signature: /Cell.setValue|6795912344196649599[0]
|
||||
// Public signature debug description: setValue(kotlin.Any?;kotlin.Any?;kotlin.Int){}
|
||||
operator fun setValue(thisRef: Any?, kProp: Any?, newValue: Int): Unit
|
||||
|
||||
}
|
||||
|
||||
+29
@@ -5,18 +5,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: En
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}En
|
||||
// Public signature: /TestAnn.x.<get-x>|-9017037183382597029[0]
|
||||
// Public signature debug description: <get-x>(){}En
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(En){}
|
||||
// Public signature: /TestAnn.<init>|2681758674480694769[0]
|
||||
// Public signature debug description: <init>(En){}
|
||||
constructor(x: En) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,6 +32,7 @@ enum class En : Enum<En> {
|
||||
// CHECK:
|
||||
// Mangled name: En#<init>(){}
|
||||
// Public signature: /En.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
private constructor() /* primary */
|
||||
// CHECK:
|
||||
// Mangled name: En.A
|
||||
@@ -52,93 +57,116 @@ enum class En : Enum<En> {
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#valueOf#static(kotlin.String){}En
|
||||
// Public signature: /En.valueOf|-1047188124757226812[0]
|
||||
// Public signature debug description: valueOf#static(kotlin.String){}En
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En#valueOf#static(kotlin.String){}
|
||||
// Public signature: /En.valueOf|-4683474617854611729[0]
|
||||
// Public signature debug description: valueOf#static(kotlin.String){}
|
||||
fun valueOf(value: String): En
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#values#static(){}kotlin.Array<En>
|
||||
// Public signature: /En.values|-6442868649398371099[0]
|
||||
// Public signature debug description: values#static(){}kotlin.Array<En>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En#values#static(){}
|
||||
// Public signature: /En.values|-8715569000920726747[0]
|
||||
// Public signature debug description: values#static(){}
|
||||
fun values(): Array<En>
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#clone(){}kotlin.Any
|
||||
// Public signature: /En.clone|-6903128697527593263[0]
|
||||
// Public signature debug description: clone(){}kotlin.Any
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En#compareTo(En){}
|
||||
// Public signature: /En.compareTo|3555292261046836181[0]
|
||||
// Public signature debug description: clone(){}
|
||||
protected /* fake */ override fun clone(): Any
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#compareTo(En){}kotlin.Int
|
||||
// Public signature: /En.compareTo|7450321438177070471[0]
|
||||
// Public signature debug description: compareTo(En){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En#equals(kotlin.Any?){}
|
||||
// Public signature: /En.equals|4638265728071529943[0]
|
||||
// Public signature debug description: compareTo(En){}
|
||||
/* fake */ override operator fun compareTo(other: En): Int
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#equals(kotlin.Any?){}kotlin.Boolean
|
||||
// Public signature: /En.equals|722809408929142791[0]
|
||||
// Public signature debug description: equals(kotlin.Any?){}kotlin.Boolean
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En#hashCode(){}
|
||||
// Public signature: /En.hashCode|3409210261493131192[0]
|
||||
// Public signature debug description: equals(kotlin.Any?){}
|
||||
/* fake */ override operator fun equals(other: Any?): Boolean
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#hashCode(){}kotlin.Int
|
||||
// Public signature: /En.hashCode|-8048879360829830756[0]
|
||||
// Public signature debug description: hashCode(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En#toString(){}
|
||||
// Public signature: /En.toString|-1522858123163872138[0]
|
||||
// Public signature debug description: toString(){}
|
||||
/* fake */ override fun hashCode(): Int
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#toString(){}kotlin.String
|
||||
// Public signature: /En.toString|6958853723545266802[0]
|
||||
// Public signature debug description: toString(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En#static{}entries
|
||||
// Public signature: /En.entries|-5134227801081826149[0]
|
||||
// Public signature debug description: #static{}entries
|
||||
/* fake */ override fun toString(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: En#static{}entries
|
||||
// Public signature: /En.entries|-5134227801081826149[0]
|
||||
// Public signature debug description: #static{}entries
|
||||
val entries: EnumEntries<En>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#<get-entries>#static(){}kotlin.enums.EnumEntries<En>
|
||||
// Public signature: /En.entries.<get-entries>|7832995474718587298[0]
|
||||
// Public signature debug description: <get-entries>#static(){}kotlin.enums.EnumEntries<En>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En{}name
|
||||
// Public signature: /En.name|4231860309499509769[0]
|
||||
// Public signature debug description: {}name
|
||||
get(): EnumEntries<En>
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: En{}name
|
||||
// Public signature: /En.name|4231860309499509769[0]
|
||||
// Public signature debug description: {}name
|
||||
/* fake */ override val name: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#<get-name>(){}kotlin.String
|
||||
// Public signature: /En.name.<get-name>|-8006111524522882650[0]
|
||||
// Public signature debug description: <get-name>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: En{}ordinal
|
||||
// Public signature: /En.ordinal|1912745122988592376[0]
|
||||
// Public signature debug description: {}ordinal
|
||||
/* fake */ override get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: En{}ordinal
|
||||
// Public signature: /En.ordinal|1912745122988592376[0]
|
||||
// Public signature debug description: {}ordinal
|
||||
/* fake */ override val ordinal: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: En#<get-ordinal>(){}kotlin.Int
|
||||
// Public signature: /En.ordinal.<get-ordinal>|-6902664390061762634[0]
|
||||
// Public signature debug description: <get-ordinal>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
/* fake */ override get(): Int
|
||||
|
||||
}
|
||||
@@ -146,6 +174,7 @@ enum class En : Enum<En> {
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@TestAnn(x = En.A)
|
||||
fun test1(): Unit
|
||||
|
||||
|
||||
+11
@@ -1,29 +1,36 @@
|
||||
// CHECK:
|
||||
// Mangled name: {}testVal
|
||||
// Public signature: /testVal|2839078120601828782[0]
|
||||
// Public signature debug description: {}testVal
|
||||
val testVal: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-testVal>(){}kotlin.String
|
||||
// Public signature: /testVal.<get-testVal>|-8940261368877498423[0]
|
||||
// Public signature debug description: <get-testVal>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-testVal>(){}
|
||||
// Public signature: /testVal.<get-testVal>|-3119877793352707332[0]
|
||||
// Public signature debug description: <get-testVal>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: {}testVar
|
||||
// Public signature: /testVar|8413087277002944883[0]
|
||||
// Public signature debug description: {}testVar
|
||||
var testVar: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-testVar>(){}kotlin.String
|
||||
// Public signature: /testVar.<get-testVar>|7475404540439630194[0]
|
||||
// Public signature debug description: <get-testVar>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-testVar>(){}
|
||||
// Public signature: /testVar.<get-testVar>|-6235253478789807887[0]
|
||||
// Public signature debug description: <get-testVar>(){}
|
||||
get
|
||||
// CHECK:
|
||||
// Mangled name: #<set-testVar>(kotlin.String){}
|
||||
// Public signature: /testVar.<set-testVar>|4717402140198696174[0]
|
||||
// Public signature debug description: <set-testVar>(kotlin.String){}
|
||||
set
|
||||
|
||||
// CHECK:
|
||||
@@ -33,18 +40,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.String
|
||||
// Public signature: /TestAnn.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.String){}
|
||||
// Public signature: /TestAnn.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
|
||||
+4
@@ -9,18 +9,22 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: test.A{}x
|
||||
// Public signature: test/A.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: test.A#<get-x>(){}kotlin.String
|
||||
// Public signature: test/A.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: test.A#<get-x>(){}
|
||||
// Public signature: test/A.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: test.A#<init>(kotlin.String){}
|
||||
// Public signature: test/A.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
|
||||
+5
@@ -5,18 +5,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.Int
|
||||
// Public signature: /TestAnn.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.Int){}
|
||||
// Public signature: /TestAnn.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(x: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -24,6 +28,7 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #testSimpleFunction(){}
|
||||
// Public signature: /testSimpleFunction|-5790063669455148045[0]
|
||||
// Public signature debug description: testSimpleFunction(){}
|
||||
@TestAnn(x = 42)
|
||||
fun testSimpleFunction(): Unit
|
||||
|
||||
|
||||
+23
@@ -7,18 +7,22 @@ open annotation class Test1<T : Any?> : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test1{}x
|
||||
// Public signature: ann/Test1.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ann.Test1#<get-x>(){}kotlin.Int
|
||||
// Public signature: ann/Test1.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ann.Test1#<get-x>(){}
|
||||
// Public signature: ann/Test1.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test1#<init>(kotlin.Int){}
|
||||
// Public signature: ann/Test1.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(x: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -30,18 +34,22 @@ open annotation class Test2<T1 : Any, T2 : Any?> : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test2{}x
|
||||
// Public signature: ann/Test2.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ann.Test2#<get-x>(){}kotlin.Int
|
||||
// Public signature: ann/Test2.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ann.Test2#<get-x>(){}
|
||||
// Public signature: ann/Test2.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test2#<init>(kotlin.Int){}
|
||||
// Public signature: ann/Test2.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(x: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -53,18 +61,22 @@ open annotation class Test3<T1 : Any?, T2 : I<T1>> : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test3{}x
|
||||
// Public signature: ann/Test3.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Test1<I<T2>>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ann.Test3#<get-x>(){}ann.Test1<ann.I<1:1>>
|
||||
// Public signature: ann/Test3.x.<get-x>|-476605448158023096[0]
|
||||
// Public signature debug description: <get-x>(){}ann.Test1<ann.I<1:1>>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ann.Test3#<get-x>(){}
|
||||
// Public signature: ann/Test3.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test3#<init>(ann.Test1<ann.I<1:1>>){}
|
||||
// Public signature: ann/Test3.<init>|-7213108781936914004[0]
|
||||
// Public signature debug description: <init>(ann.Test1<ann.I<1:1>>){}
|
||||
constructor(x: Test1<I<T2>>) /* primary */
|
||||
|
||||
}
|
||||
@@ -76,18 +88,22 @@ open annotation class Test4 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test4{}x
|
||||
// Public signature: ann/Test4.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Array<Test3<Int, C<Int>>>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ann.Test4#<get-x>(){}kotlin.Array<ann.Test3<kotlin.Int,ann.C<kotlin.Int>>>
|
||||
// Public signature: ann/Test4.x.<get-x>|-4754126975303916738[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Array<ann.Test3<kotlin.Int,ann.C<kotlin.Int>>>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ann.Test4#<get-x>(){}
|
||||
// Public signature: ann/Test4.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test4#<init>(kotlin.Array<ann.Test3<kotlin.Int,ann.C<kotlin.Int>>>){}
|
||||
// Public signature: ann/Test4.<init>|8552260922942750189[0]
|
||||
// Public signature debug description: <init>(kotlin.Array<ann.Test3<kotlin.Int,ann.C<kotlin.Int>>>){}
|
||||
constructor(x: Array<Test3<Int, C<Int>>>) /* primary */
|
||||
|
||||
}
|
||||
@@ -99,18 +115,22 @@ open annotation class Test5<T : Any?> : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test5{}xs
|
||||
// Public signature: ann/Test5.xs|1063330853857063704[0]
|
||||
// Public signature debug description: {}xs
|
||||
val xs: Array<out Test3<T, C<T>>>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ann.Test5#<get-xs>(){}kotlin.Array<out|ann.Test3<1:0,ann.C<1:0>>>
|
||||
// Public signature: ann/Test5.xs.<get-xs>|-4480240150602494549[0]
|
||||
// Public signature debug description: <get-xs>(){}kotlin.Array<out|ann.Test3<1:0,ann.C<1:0>>>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ann.Test5#<get-xs>(){}
|
||||
// Public signature: ann/Test5.xs.<get-xs>|-6958094100501701183[0]
|
||||
// Public signature debug description: <get-xs>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ann.Test5#<init>(kotlin.Array<out|ann.Test3<1:0,ann.C<1:0>>>...){}
|
||||
// Public signature: ann/Test5.<init>|4580033169902184740[0]
|
||||
// Public signature debug description: <init>(kotlin.Array<out|ann.Test3<1:0,ann.C<1:0>>>...){}
|
||||
constructor(vararg xs: Test3<T, C<T>>) /* primary */
|
||||
|
||||
}
|
||||
@@ -122,6 +142,7 @@ class ARG {
|
||||
// CHECK:
|
||||
// Mangled name: ann.ARG#<init>(){}
|
||||
// Public signature: ann/ARG.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -133,6 +154,7 @@ class C<T : Any?> : I<T> {
|
||||
// CHECK:
|
||||
// Mangled name: ann.C#<init>(){}
|
||||
// Public signature: ann/C.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -149,6 +171,7 @@ class CC {
|
||||
// CHECK:
|
||||
// Mangled name: ann.CC#<init>(){}
|
||||
// Public signature: ann/CC.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
|
||||
+28
@@ -5,30 +5,37 @@ class DefaultImpl : IFoo {
|
||||
// CHECK:
|
||||
// Mangled name: DefaultImpl#<init>(){}
|
||||
// Public signature: /DefaultImpl.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: DefaultImpl@kotlin.String{}extProp
|
||||
// Public signature: /DefaultImpl.extProp|9137761441129982647[0]
|
||||
// Public signature debug description: @kotlin.String{}extProp
|
||||
/* fake */ override val String.extProp: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: DefaultImpl#<get-extProp>@kotlin.String(){}kotlin.String
|
||||
// Public signature: /DefaultImpl.extProp.<get-extProp>|-8732758648969586151[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: DefaultImpl#<get-extProp>@kotlin.String(){}
|
||||
// Public signature: /DefaultImpl.extProp.<get-extProp>|-2957953481772901234[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}
|
||||
/* fake */ override get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: DefaultImpl{}prop
|
||||
// Public signature: /DefaultImpl.prop|3598315380056892812[0]
|
||||
// Public signature debug description: {}prop
|
||||
/* fake */ override val prop: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: DefaultImpl#<get-prop>(){}kotlin.String
|
||||
// Public signature: /DefaultImpl.prop.<get-prop>|-4077144726618700772[0]
|
||||
// Public signature debug description: <get-prop>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: DefaultImpl#<get-prop>(){}
|
||||
// Public signature: /DefaultImpl.prop.<get-prop>|-5734736374948136327[0]
|
||||
// Public signature debug description: <get-prop>(){}
|
||||
/* fake */ override get(): String
|
||||
|
||||
}
|
||||
@@ -40,34 +47,42 @@ class Delegated : IFoo {
|
||||
// CHECK:
|
||||
// Mangled name: Delegated#<init>(IFoo){}
|
||||
// Public signature: /Delegated.<init>|-657369904845510135[0]
|
||||
// Public signature debug description: <init>(IFoo){}
|
||||
constructor(foo: IFoo) /* primary */
|
||||
// CHECK:
|
||||
// Mangled name: Delegated.$$delegate_0
|
||||
// Public signature: /Delegated.$$delegate_0|-7286425919675154353[0]
|
||||
// Public signature debug description:
|
||||
private /* final field */ val $$delegate_0: IFoo
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: Delegated@kotlin.String{}extProp
|
||||
// Public signature: /Delegated.extProp|9137761441129982647[0]
|
||||
// Public signature debug description: @kotlin.String{}extProp
|
||||
override val String.extProp: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Delegated#<get-extProp>@kotlin.String(){}kotlin.String
|
||||
// Public signature: /Delegated.extProp.<get-extProp>|-8732758648969586151[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Delegated#<get-extProp>@kotlin.String(){}
|
||||
// Public signature: /Delegated.extProp.<get-extProp>|-2957953481772901234[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}
|
||||
override get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: Delegated{}prop
|
||||
// Public signature: /Delegated.prop|3598315380056892812[0]
|
||||
// Public signature debug description: {}prop
|
||||
override val prop: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Delegated#<get-prop>(){}kotlin.String
|
||||
// Public signature: /Delegated.prop.<get-prop>|-4077144726618700772[0]
|
||||
// Public signature debug description: <get-prop>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Delegated#<get-prop>(){}
|
||||
// Public signature: /Delegated.prop.<get-prop>|-5734736374948136327[0]
|
||||
// Public signature debug description: <get-prop>(){}
|
||||
override get(): String
|
||||
|
||||
}
|
||||
@@ -79,30 +94,37 @@ class ExplicitOverride : IFoo {
|
||||
// CHECK:
|
||||
// Mangled name: ExplicitOverride#<init>(){}
|
||||
// Public signature: /ExplicitOverride.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ExplicitOverride@kotlin.String{}extProp
|
||||
// Public signature: /ExplicitOverride.extProp|9137761441129982647[0]
|
||||
// Public signature debug description: @kotlin.String{}extProp
|
||||
override val String.extProp: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ExplicitOverride#<get-extProp>@kotlin.String(){}kotlin.String
|
||||
// Public signature: /ExplicitOverride.extProp.<get-extProp>|-8732758648969586151[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ExplicitOverride#<get-extProp>@kotlin.String(){}
|
||||
// Public signature: /ExplicitOverride.extProp.<get-extProp>|-2957953481772901234[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}
|
||||
override get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ExplicitOverride{}prop
|
||||
// Public signature: /ExplicitOverride.prop|3598315380056892812[0]
|
||||
// Public signature debug description: {}prop
|
||||
override val prop: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ExplicitOverride#<get-prop>(){}kotlin.String
|
||||
// Public signature: /ExplicitOverride.prop.<get-prop>|-4077144726618700772[0]
|
||||
// Public signature debug description: <get-prop>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ExplicitOverride#<get-prop>(){}
|
||||
// Public signature: /ExplicitOverride.prop.<get-prop>|-5734736374948136327[0]
|
||||
// Public signature debug description: <get-prop>(){}
|
||||
override get(): String
|
||||
|
||||
}
|
||||
@@ -115,25 +137,31 @@ interface IFoo {
|
||||
// CHECK:
|
||||
// Mangled name: IFoo@kotlin.String{}extProp
|
||||
// Public signature: /IFoo.extProp|9137761441129982647[0]
|
||||
// Public signature debug description: @kotlin.String{}extProp
|
||||
val String.extProp: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: IFoo#<get-extProp>@kotlin.String(){}kotlin.String
|
||||
// Public signature: /IFoo.extProp.<get-extProp>|-8732758648969586151[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: IFoo#<get-extProp>@kotlin.String(){}
|
||||
// Public signature: /IFoo.extProp.<get-extProp>|-2957953481772901234[0]
|
||||
// Public signature debug description: <get-extProp>@kotlin.String(){}
|
||||
get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: IFoo{}prop
|
||||
// Public signature: /IFoo.prop|3598315380056892812[0]
|
||||
// Public signature debug description: {}prop
|
||||
val prop: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: IFoo#<get-prop>(){}kotlin.String
|
||||
// Public signature: /IFoo.prop.<get-prop>|-4077144726618700772[0]
|
||||
// Public signature debug description: <get-prop>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: IFoo#<get-prop>(){}
|
||||
// Public signature: /IFoo.prop.<get-prop>|-5734736374948136327[0]
|
||||
// Public signature debug description: <get-prop>(){}
|
||||
get(): String
|
||||
|
||||
}
|
||||
|
||||
+3
@@ -1,18 +1,21 @@
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@JavaAnn
|
||||
fun test1(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test2(){}
|
||||
// Public signature: /test2|4279114864133353152[0]
|
||||
// Public signature debug description: test2(){}
|
||||
@JavaAnn(value = "abc", i = 123)
|
||||
fun test2(): Unit
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: #test3(){}
|
||||
// Public signature: /test3|-3759735065270951803[0]
|
||||
// Public signature debug description: test3(){}
|
||||
@JavaAnn(value = "abc", i = 123)
|
||||
fun test3(): Unit
|
||||
|
||||
|
||||
+5
@@ -5,18 +5,22 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A{}x
|
||||
// Public signature: /A.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-x>(){}kotlin.String
|
||||
// Public signature: /A.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-x>(){}
|
||||
// Public signature: /A.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(kotlin.String){}
|
||||
// Public signature: /A.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -24,5 +28,6 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #foo(kotlin.collections.Map<kotlin.String,kotlin.Int>){}
|
||||
// Public signature: /foo|2882082711847831728[0]
|
||||
// Public signature debug description: foo(kotlin.collections.Map<kotlin.String,kotlin.Int>){}
|
||||
fun foo(m: Map<String, Int>): Unit
|
||||
|
||||
|
||||
Vendored
+4
@@ -5,6 +5,7 @@ open annotation class A1 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A1#<init>(){}
|
||||
// Public signature: /A1.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -16,6 +17,7 @@ open annotation class A2 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A2#<init>(){}
|
||||
// Public signature: /A2.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -27,6 +29,7 @@ open annotation class A3 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A3#<init>(){}
|
||||
// Public signature: /A3.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -34,6 +37,7 @@ open annotation class A3 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #test(){}
|
||||
// Public signature: /test|6620506149988718649[0]
|
||||
// Public signature debug description: test(){}
|
||||
@A1
|
||||
@A2
|
||||
@A3
|
||||
|
||||
+5
@@ -5,6 +5,7 @@ open annotation class Ann : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: Ann#<init>(){}
|
||||
// Public signature: /Ann.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -16,18 +17,22 @@ class Test {
|
||||
// CHECK:
|
||||
// Mangled name: Test{}x
|
||||
// Public signature: /Test.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Test#<get-x>(){}kotlin.Int
|
||||
// Public signature: /Test.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Test#<get-x>(){}
|
||||
// Public signature: /Test.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: Test#<init>(kotlin.Int){}
|
||||
// Public signature: /Test.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(@Ann x: Int) /* primary */
|
||||
|
||||
}
|
||||
|
||||
+7
@@ -1,14 +1,17 @@
|
||||
// CHECK:
|
||||
// Mangled name: {}testVal
|
||||
// Public signature: /testVal|2839078120601828782[0]
|
||||
// Public signature debug description: {}testVal
|
||||
@TestAnn(x = "testVal.property")
|
||||
val testVal: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-testVal>(){}kotlin.String
|
||||
// Public signature: /testVal.<get-testVal>|-8940261368877498423[0]
|
||||
// Public signature debug description: <get-testVal>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-testVal>(){}
|
||||
// Public signature: /testVal.<get-testVal>|-3119877793352707332[0]
|
||||
// Public signature debug description: <get-testVal>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
@@ -18,18 +21,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.String
|
||||
// Public signature: /TestAnn.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.String){}
|
||||
// Public signature: /TestAnn.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
|
||||
+12
@@ -5,18 +5,22 @@ open annotation class A : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A{}x
|
||||
// Public signature: /A.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-x>(){}kotlin.String
|
||||
// Public signature: /A.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-x>(){}
|
||||
// Public signature: /A.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(kotlin.String){}
|
||||
// Public signature: /A.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,37 +32,45 @@ class C {
|
||||
// CHECK:
|
||||
// Mangled name: C{}x
|
||||
// Public signature: /C.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: C#<get-x>(){}kotlin.Int
|
||||
// Public signature: /C.x.<get-x>|4966956098150895696[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: C#<get-x>(){}
|
||||
// Public signature: /C.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
@A(x = "C.x.get")
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: C{}y
|
||||
// Public signature: /C.y|3625903257357557171[0]
|
||||
// Public signature debug description: {}y
|
||||
var y: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: C#<get-y>(){}kotlin.Int
|
||||
// Public signature: /C.y.<get-y>|-6745575372101973707[0]
|
||||
// Public signature debug description: <get-y>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: C#<get-y>(){}
|
||||
// Public signature: /C.y.<get-y>|-7902422373892128922[0]
|
||||
// Public signature debug description: <get-y>(){}
|
||||
@A(x = "C.y.get")
|
||||
get
|
||||
// CHECK:
|
||||
// Mangled name: C#<set-y>(kotlin.Int){}
|
||||
// Public signature: /C.y.<set-y>|2154335559382602722[0]
|
||||
// Public signature debug description: <set-y>(kotlin.Int){}
|
||||
@A(x = "C.y.set")
|
||||
set
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: C#<init>(kotlin.Int;kotlin.Int){}
|
||||
// Public signature: /C.<init>|-7691762014320324121[0]
|
||||
// Public signature debug description: <init>(kotlin.Int;kotlin.Int){}
|
||||
constructor(x: Int, y: Int) /* primary */
|
||||
|
||||
}
|
||||
|
||||
Vendored
+18
@@ -1,31 +1,38 @@
|
||||
// CHECK:
|
||||
// Mangled name: {}test3
|
||||
// Public signature: /test3|7677556066983021166[0]
|
||||
// Public signature debug description: {}test3
|
||||
val test3: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-test3>(){}kotlin.String
|
||||
// Public signature: /test3.<get-test3>|-2084248125648281731[0]
|
||||
// Public signature debug description: <get-test3>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-test3>(){}
|
||||
// Public signature: /test3.<get-test3>|-7333791615083236686[0]
|
||||
// Public signature debug description: <get-test3>(){}
|
||||
@TestAnn(x = "test3.get")
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: {}test4
|
||||
// Public signature: /test4|-9115637610245762085[0]
|
||||
// Public signature debug description: {}test4
|
||||
var test4: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-test4>(){}kotlin.String
|
||||
// Public signature: /test4.<get-test4>|5046196083583551233[0]
|
||||
// Public signature debug description: <get-test4>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-test4>(){}
|
||||
// Public signature: /test4.<get-test4>|4166854324968284003[0]
|
||||
// Public signature debug description: <get-test4>(){}
|
||||
@TestAnn(x = "test4.get")
|
||||
get
|
||||
// CHECK:
|
||||
// Mangled name: #<set-test4>(kotlin.String){}
|
||||
// Public signature: /test4.<set-test4>|-6376420079491092905[0]
|
||||
// Public signature debug description: <set-test4>(kotlin.String){}
|
||||
@TestAnn(x = "test4.set")
|
||||
set
|
||||
|
||||
@@ -36,18 +43,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.String
|
||||
// Public signature: /TestAnn.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.String){}
|
||||
// Public signature: /TestAnn.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -55,31 +66,38 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: {}test1
|
||||
// Public signature: /test1|6005685442305498193[0]
|
||||
// Public signature debug description: {}test1
|
||||
val test1: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-test1>(){}kotlin.String
|
||||
// Public signature: /test1.<get-test1>|-7403750508378492770[0]
|
||||
// Public signature debug description: <get-test1>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-test1>(){}
|
||||
// Public signature: /test1.<get-test1>|-5735092642142423279[0]
|
||||
// Public signature debug description: <get-test1>(){}
|
||||
@TestAnn(x = "test1.get")
|
||||
get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: {}test2
|
||||
// Public signature: /test2|2517758057000911509[0]
|
||||
// Public signature debug description: {}test2
|
||||
var test2: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-test2>(){}kotlin.String
|
||||
// Public signature: /test2.<get-test2>|-8062412501290172814[0]
|
||||
// Public signature debug description: <get-test2>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-test2>(){}
|
||||
// Public signature: /test2.<get-test2>|-5218942532816206869[0]
|
||||
// Public signature debug description: <get-test2>(){}
|
||||
@TestAnn(x = "test2.get")
|
||||
get(): String
|
||||
// CHECK:
|
||||
// Mangled name: #<set-test2>(kotlin.String){}
|
||||
// Public signature: /test2.<set-test2>|4560361687368503848[0]
|
||||
// Public signature debug description: <set-test2>(kotlin.String){}
|
||||
@TestAnn(x = "test2.set")
|
||||
set(value: String): Unit
|
||||
|
||||
|
||||
+10
@@ -1,17 +1,21 @@
|
||||
// CHECK:
|
||||
// Mangled name: {}p
|
||||
// Public signature: /p|6715504260787941082[0]
|
||||
// Public signature debug description: {}p
|
||||
var p: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-p>(){}kotlin.Int
|
||||
// Public signature: /p.<get-p>|5329635969197638839[0]
|
||||
// Public signature debug description: <get-p>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-p>(){}
|
||||
// Public signature: /p.<get-p>|-1162552463316289847[0]
|
||||
// Public signature debug description: <get-p>(){}
|
||||
get
|
||||
// CHECK:
|
||||
// Mangled name: #<set-p>(kotlin.Int){}
|
||||
// Public signature: /p.<set-p>|-6346582004572228570[0]
|
||||
// Public signature debug description: <set-p>(kotlin.Int){}
|
||||
set
|
||||
|
||||
// CHECK:
|
||||
@@ -21,6 +25,7 @@ open annotation class AnnParam : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: AnnParam#<init>(){}
|
||||
// Public signature: /AnnParam.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -32,22 +37,27 @@ class C {
|
||||
// CHECK:
|
||||
// Mangled name: C{}p
|
||||
// Public signature: /C.p|6715504260787941082[0]
|
||||
// Public signature debug description: {}p
|
||||
var p: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: C#<get-p>(){}kotlin.Int
|
||||
// Public signature: /C.p.<get-p>|5329635969197638839[0]
|
||||
// Public signature debug description: <get-p>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: C#<get-p>(){}
|
||||
// Public signature: /C.p.<get-p>|-1162552463316289847[0]
|
||||
// Public signature debug description: <get-p>(){}
|
||||
get
|
||||
// CHECK:
|
||||
// Mangled name: C#<set-p>(kotlin.Int){}
|
||||
// Public signature: /C.p.<set-p>|-6346582004572228570[0]
|
||||
// Public signature debug description: <set-p>(kotlin.Int){}
|
||||
set
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: C#<init>(kotlin.Int){}
|
||||
// Public signature: /C.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(p: Int) /* primary */
|
||||
|
||||
}
|
||||
|
||||
Vendored
+12
@@ -5,6 +5,7 @@ open annotation class Ann : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: Ann#<init>(){}
|
||||
// Public signature: /Ann.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -16,26 +17,32 @@ class A {
|
||||
// CHECK:
|
||||
// Mangled name: A#<init>(){}
|
||||
// Public signature: /A.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#f@kotlin.String(){}kotlin.String
|
||||
// Public signature: /A.f|-7101655006580999052[0]
|
||||
// Public signature debug description: f@kotlin.String(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#f@kotlin.String(){}
|
||||
// Public signature: /A.f|8972825158424444953[0]
|
||||
// Public signature debug description: f@kotlin.String(){}
|
||||
fun String.f(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A@kotlin.String?{}p
|
||||
// Public signature: /A.p|-5332805019112550693[0]
|
||||
// Public signature debug description: @kotlin.String?{}p
|
||||
val String?.p: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A#<get-p>@kotlin.String?(){}kotlin.String
|
||||
// Public signature: /A.p.<get-p>|2132774030714660058[0]
|
||||
// Public signature debug description: <get-p>@kotlin.String?(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A#<get-p>@kotlin.String?(){}
|
||||
// Public signature: /A.p.<get-p>|-206460032103866705[0]
|
||||
// Public signature debug description: <get-p>@kotlin.String?(){}
|
||||
get(): String
|
||||
|
||||
}
|
||||
@@ -43,20 +50,25 @@ class A {
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #topLevelF@kotlin.String?(){}kotlin.String
|
||||
// Public signature: /topLevelF|1393314255563085986[0]
|
||||
// Public signature debug description: topLevelF@kotlin.String?(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #topLevelF@kotlin.String?(){}
|
||||
// Public signature: /topLevelF|657392952960169607[0]
|
||||
// Public signature debug description: topLevelF@kotlin.String?(){}
|
||||
fun String?.topLevelF(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: @kotlin.String{}topLevelP
|
||||
// Public signature: /topLevelP|4430474858321876067[0]
|
||||
// Public signature debug description: @kotlin.String{}topLevelP
|
||||
val String.topLevelP: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: #<get-topLevelP>@kotlin.String(){}kotlin.String
|
||||
// Public signature: /topLevelP.<get-topLevelP>|6082050321613134215[0]
|
||||
// Public signature debug description: <get-topLevelP>@kotlin.String(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: #<get-topLevelP>@kotlin.String(){}
|
||||
// Public signature: /topLevelP.<get-topLevelP>|529461791237324071[0]
|
||||
// Public signature debug description: <get-topLevelP>@kotlin.String(){}
|
||||
get(): String
|
||||
|
||||
|
||||
+4
@@ -6,18 +6,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.String
|
||||
// Public signature: /TestAnn.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.String){}
|
||||
// Public signature: /TestAnn.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
|
||||
Vendored
+2
@@ -6,6 +6,7 @@ open annotation class Anno : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: Anno#<init>(){}
|
||||
// Public signature: /Anno.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
constructor() /* primary */
|
||||
|
||||
}
|
||||
@@ -13,5 +14,6 @@ open annotation class Anno : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #foo(){0§<kotlin.Any?>}
|
||||
// Public signature: /foo|-7822584347064313243[0]
|
||||
// Public signature debug description: foo(){0§<kotlin.Any?>}
|
||||
fun <@Anno T : Any?> foo(): Unit
|
||||
|
||||
|
||||
Vendored
+9
@@ -5,18 +5,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.String
|
||||
// Public signature: /TestAnn.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.String){}
|
||||
// Public signature: /TestAnn.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,18 +32,22 @@ class TestClassConstructor1 {
|
||||
// CHECK:
|
||||
// Mangled name: TestClassConstructor1{}xx
|
||||
// Public signature: /TestClassConstructor1.xx|5916295751157136767[0]
|
||||
// Public signature debug description: {}xx
|
||||
val xx: Int
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestClassConstructor1#<get-xx>(){}kotlin.Int
|
||||
// Public signature: /TestClassConstructor1.xx.<get-xx>|-7844073399004608724[0]
|
||||
// Public signature debug description: <get-xx>(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestClassConstructor1#<get-xx>(){}
|
||||
// Public signature: /TestClassConstructor1.xx.<get-xx>|5648847738704808838[0]
|
||||
// Public signature debug description: <get-xx>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestClassConstructor1#<init>(kotlin.Int){}
|
||||
// Public signature: /TestClassConstructor1.<init>|-5182794243525578284[0]
|
||||
// Public signature debug description: <init>(kotlin.Int){}
|
||||
constructor(@TestAnn(x = "TestClassConstructor1.x") x: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -47,5 +55,6 @@ class TestClassConstructor1 {
|
||||
// CHECK:
|
||||
// Mangled name: #testFun(kotlin.Int){}
|
||||
// Public signature: /testFun|7846764360131207179[0]
|
||||
// Public signature debug description: testFun(kotlin.Int){}
|
||||
fun testFun(@TestAnn(x = "testFun.x") x: Int): Unit
|
||||
|
||||
|
||||
Vendored
+14
@@ -5,18 +5,22 @@ open annotation class A1 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A1{}xs
|
||||
// Public signature: /A1.xs|1063330853857063704[0]
|
||||
// Public signature debug description: {}xs
|
||||
val xs: IntArray
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A1#<get-xs>(){}kotlin.IntArray
|
||||
// Public signature: /A1.xs.<get-xs>|5887559004820637749[0]
|
||||
// Public signature debug description: <get-xs>(){}kotlin.IntArray
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A1#<get-xs>(){}
|
||||
// Public signature: /A1.xs.<get-xs>|-6958094100501701183[0]
|
||||
// Public signature debug description: <get-xs>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A1#<init>(kotlin.IntArray...){}
|
||||
// Public signature: /A1.<init>|3304157197881351514[0]
|
||||
// Public signature debug description: <init>(kotlin.IntArray...){}
|
||||
constructor(vararg xs: Int) /* primary */
|
||||
|
||||
}
|
||||
@@ -28,18 +32,22 @@ open annotation class A2 : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: A2{}xs
|
||||
// Public signature: /A2.xs|1063330853857063704[0]
|
||||
// Public signature debug description: {}xs
|
||||
val xs: Array<out String>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: A2#<get-xs>(){}kotlin.Array<out|kotlin.String>
|
||||
// Public signature: /A2.xs.<get-xs>|9188548163055185324[0]
|
||||
// Public signature debug description: <get-xs>(){}kotlin.Array<out|kotlin.String>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: A2#<get-xs>(){}
|
||||
// Public signature: /A2.xs.<get-xs>|-6958094100501701183[0]
|
||||
// Public signature debug description: <get-xs>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: A2#<init>(kotlin.Array<out|kotlin.String>...){}
|
||||
// Public signature: /A2.<init>|-6780234697714860085[0]
|
||||
// Public signature debug description: <init>(kotlin.Array<out|kotlin.String>...){}
|
||||
constructor(vararg xs: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -51,18 +59,22 @@ open annotation class AA : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: AA{}xs
|
||||
// Public signature: /AA.xs|1063330853857063704[0]
|
||||
// Public signature debug description: {}xs
|
||||
val xs: Array<out A1>
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: AA#<get-xs>(){}kotlin.Array<out|A1>
|
||||
// Public signature: /AA.xs.<get-xs>|-3667422235339963828[0]
|
||||
// Public signature debug description: <get-xs>(){}kotlin.Array<out|A1>
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: AA#<get-xs>(){}
|
||||
// Public signature: /AA.xs.<get-xs>|-6958094100501701183[0]
|
||||
// Public signature debug description: <get-xs>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: AA#<init>(kotlin.Array<out|A1>...){}
|
||||
// Public signature: /AA.<init>|-3149474316715311617[0]
|
||||
// Public signature debug description: <init>(kotlin.Array<out|A1>...){}
|
||||
constructor(vararg xs: A1) /* primary */
|
||||
|
||||
}
|
||||
@@ -70,6 +82,7 @@ open annotation class AA : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #test1(){}
|
||||
// Public signature: /test1|4297044443957252634[0]
|
||||
// Public signature debug description: test1(){}
|
||||
@A1(xs = [1, 2, 3])
|
||||
@A2(xs = ["a", "b", "c"])
|
||||
@AA(xs = [A1(xs = [4]), A1(xs = [5]), A1(xs = [6])])
|
||||
@@ -78,6 +91,7 @@ fun test1(): Unit
|
||||
// CHECK:
|
||||
// Mangled name: #test2(){}
|
||||
// Public signature: /test2|4279114864133353152[0]
|
||||
// Public signature debug description: test2(){}
|
||||
@A1(xs = [])
|
||||
@A2(xs = [])
|
||||
@AA(xs = [])
|
||||
|
||||
+5
@@ -5,18 +5,22 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn{}x
|
||||
// Public signature: /TestAnn.x|-8060530855978347579[0]
|
||||
// Public signature debug description: {}x
|
||||
val x: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: TestAnn#<get-x>(){}kotlin.String
|
||||
// Public signature: /TestAnn.x.<get-x>|316111172223894646[0]
|
||||
// Public signature debug description: <get-x>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: TestAnn#<get-x>(){}
|
||||
// Public signature: /TestAnn.x.<get-x>|1482705010654679335[0]
|
||||
// Public signature debug description: <get-x>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: TestAnn#<init>(kotlin.String){}
|
||||
// Public signature: /TestAnn.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(x: String) /* primary */
|
||||
|
||||
}
|
||||
@@ -24,5 +28,6 @@ open annotation class TestAnn : Annotation {
|
||||
// CHECK:
|
||||
// Mangled name: #foo(){}
|
||||
// Public signature: /foo|-1041209573719867811[0]
|
||||
// Public signature debug description: foo(){}
|
||||
fun foo(): Unit
|
||||
|
||||
|
||||
Reference in New Issue
Block a user