[klib] Test signature descriptions in irText tests
KT-59486
This commit is contained in:
committed by
Space Team
parent
6142d75bb4
commit
5e63f7627f
+15
@@ -5,25 +5,31 @@ object Host {
|
||||
// CHECK:
|
||||
// Mangled name: Host@kotlin.String{}plusK
|
||||
// Public signature: /Host.plusK|-5135341778615178066[0]
|
||||
// Public signature debug description: @kotlin.String{}plusK
|
||||
val String.plusK: String /* by */
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Host#<get-plusK>@kotlin.String(){}kotlin.String
|
||||
// Public signature: /Host.plusK.<get-plusK>|3745691594714867630[0]
|
||||
// Public signature debug description: <get-plusK>@kotlin.String(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Host#<get-plusK>@kotlin.String(){}
|
||||
// Public signature: /Host.plusK.<get-plusK>|9025996815801643210[0]
|
||||
// Public signature debug description: <get-plusK>@kotlin.String(){}
|
||||
get(): String
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: Host{}ok
|
||||
// Public signature: /Host.ok|3084714860561867417[0]
|
||||
// Public signature debug description: {}ok
|
||||
val ok: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Host#<get-ok>(){}kotlin.String
|
||||
// Public signature: /Host.ok.<get-ok>|-4000622060828023401[0]
|
||||
// Public signature debug description: <get-ok>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Host#<get-ok>(){}
|
||||
// Public signature: /Host.ok.<get-ok>|6963158084917262476[0]
|
||||
// Public signature debug description: <get-ok>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
@@ -33,26 +39,32 @@ object Host {
|
||||
// CHECK:
|
||||
// Mangled name: Host.StringDelegate{}s
|
||||
// Public signature: /Host.StringDelegate.s|7217541905509134881[0]
|
||||
// Public signature debug description: {}s
|
||||
val s: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Host.StringDelegate#<get-s>(){}kotlin.String
|
||||
// Public signature: /Host.StringDelegate.s.<get-s>|4142379646177092803[0]
|
||||
// Public signature debug description: <get-s>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Host.StringDelegate#<get-s>(){}
|
||||
// Public signature: /Host.StringDelegate.s.<get-s>|-1662172381559511151[0]
|
||||
// Public signature debug description: <get-s>(){}
|
||||
get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: Host.StringDelegate#<init>(kotlin.String){}
|
||||
// Public signature: /Host.StringDelegate.<init>|1280618353163213788[0]
|
||||
// Public signature debug description: <init>(kotlin.String){}
|
||||
constructor(s: String) /* primary */
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Host.StringDelegate#getValue(kotlin.String;kotlin.Any){}kotlin.String
|
||||
// Public signature: /Host.StringDelegate.getValue|-6458230510682528416[0]
|
||||
// Public signature debug description: getValue(kotlin.String;kotlin.Any){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Host.StringDelegate#getValue(kotlin.String;kotlin.Any){}
|
||||
// Public signature: /Host.StringDelegate.getValue|7907668248030418959[0]
|
||||
// Public signature debug description: getValue(kotlin.String;kotlin.Any){}
|
||||
operator fun getValue(receiver: String, p: Any): String
|
||||
|
||||
}
|
||||
@@ -60,14 +72,17 @@ object Host {
|
||||
// CHECK:
|
||||
// Mangled name: Host#<init>(){}
|
||||
// Public signature: /Host.<init>|-5645683436151566731[0]
|
||||
// Public signature debug description: <init>(){}
|
||||
private constructor() /* primary */
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: Host#provideDelegate@kotlin.String(kotlin.Any?;kotlin.Any){}Host.StringDelegate
|
||||
// Public signature: /Host.provideDelegate|8603848002271829719[0]
|
||||
// Public signature debug description: provideDelegate@kotlin.String(kotlin.Any?;kotlin.Any){}Host.StringDelegate
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: Host#provideDelegate@kotlin.String(kotlin.Any?;kotlin.Any){}
|
||||
// Public signature: /Host.provideDelegate|-84581881633703397[0]
|
||||
// Public signature debug description: provideDelegate@kotlin.String(kotlin.Any?;kotlin.Any){}
|
||||
operator fun String.provideDelegate(host: Any?, p: Any): StringDelegate
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user