[klib] Test signature descriptions in irText tests
KT-59486
This commit is contained in:
committed by
Space Team
parent
6142d75bb4
commit
5e63f7627f
@@ -5,77 +5,96 @@ open data class ValidatedProperties {
|
||||
// CHECK:
|
||||
// Mangled name: ValidatedProperties{}test1
|
||||
// Public signature: /ValidatedProperties.test1|6005685442305498193[0]
|
||||
// Public signature debug description: {}test1
|
||||
open val test1: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#<get-test1>(){}kotlin.String
|
||||
// Public signature: /ValidatedProperties.test1.<get-test1>|-7403750508378492770[0]
|
||||
// Public signature debug description: <get-test1>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#<get-test1>(){}
|
||||
// Public signature: /ValidatedProperties.test1.<get-test1>|-5735092642142423279[0]
|
||||
// Public signature debug description: <get-test1>(){}
|
||||
open get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ValidatedProperties{}test2
|
||||
// Public signature: /ValidatedProperties.test2|2517758057000911509[0]
|
||||
// Public signature debug description: {}test2
|
||||
open val test2: String
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#<get-test2>(){}kotlin.String
|
||||
// Public signature: /ValidatedProperties.test2.<get-test2>|-8062412501290172814[0]
|
||||
// Public signature debug description: <get-test2>(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#<get-test2>(){}
|
||||
// Public signature: /ValidatedProperties.test2.<get-test2>|-5218942532816206869[0]
|
||||
// Public signature debug description: <get-test2>(){}
|
||||
open get
|
||||
|
||||
// CHECK:
|
||||
// Mangled name: ValidatedProperties#<init>(kotlin.String;kotlin.String){}
|
||||
// Public signature: /ValidatedProperties.<init>|9140439783797628932[0]
|
||||
// Public signature debug description: <init>(kotlin.String;kotlin.String){}
|
||||
constructor(test1: String, test2: String) /* primary */
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#component1(){}kotlin.String
|
||||
// Public signature: /ValidatedProperties.component1|-7481405593404337796[0]
|
||||
// Public signature debug description: component1(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#component1(){}
|
||||
// Public signature: /ValidatedProperties.component1|162597135895221648[0]
|
||||
// Public signature debug description: component1(){}
|
||||
operator fun component1(): String
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#component2(){}kotlin.String
|
||||
// Public signature: /ValidatedProperties.component2|1228864375093914597[0]
|
||||
// Public signature debug description: component2(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#component2(){}
|
||||
// Public signature: /ValidatedProperties.component2|3796717572321500973[0]
|
||||
// Public signature debug description: component2(){}
|
||||
operator fun component2(): String
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#copy(kotlin.String;kotlin.String){}ValidatedProperties
|
||||
// Public signature: /ValidatedProperties.copy|3682871900302910646[0]
|
||||
// Public signature debug description: copy(kotlin.String;kotlin.String){}ValidatedProperties
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#copy(kotlin.String;kotlin.String){}
|
||||
// Public signature: /ValidatedProperties.copy|-7088139716016046259[0]
|
||||
// Public signature debug description: copy(kotlin.String;kotlin.String){}
|
||||
fun copy(test1: String, test2: String): ValidatedProperties
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#equals(kotlin.Any?){}kotlin.Boolean
|
||||
// Public signature: /ValidatedProperties.equals|722809408929142791[0]
|
||||
// Public signature debug description: equals(kotlin.Any?){}kotlin.Boolean
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#equals(kotlin.Any?){}
|
||||
// Public signature: /ValidatedProperties.equals|4638265728071529943[0]
|
||||
// Public signature debug description: equals(kotlin.Any?){}
|
||||
override operator fun equals(other: Any?): Boolean
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#hashCode(){}kotlin.Int
|
||||
// Public signature: /ValidatedProperties.hashCode|-8048879360829830756[0]
|
||||
// Public signature debug description: hashCode(){}kotlin.Int
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#hashCode(){}
|
||||
// Public signature: /ValidatedProperties.hashCode|3409210261493131192[0]
|
||||
// Public signature debug description: hashCode(){}
|
||||
override fun hashCode(): Int
|
||||
|
||||
// CHECK JVM_IR:
|
||||
// Mangled name: ValidatedProperties#toString(){}kotlin.String
|
||||
// Public signature: /ValidatedProperties.toString|6958853723545266802[0]
|
||||
// Public signature debug description: toString(){}kotlin.String
|
||||
// CHECK JS_IR NATIVE:
|
||||
// Mangled name: ValidatedProperties#toString(){}
|
||||
// Public signature: /ValidatedProperties.toString|-1522858123163872138[0]
|
||||
// Public signature debug description: toString(){}
|
||||
override fun toString(): String
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user