Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt59102.sig.kt.txt
T
Dmitriy Dolovov 16d1e85932 IR text tests: Stable blank lines between declarations in class
Rework rendering of kt-like dump and signatures dump in order to avoid
unstable blank line between declarations of the same level:
1. No blank line for the first declaration inside the member scope of
the class.
2. Always a single blank line between each two subsequent declarations
inside the member scope of the class.
2023-11-30 08:32:35 +00:00

34 lines
1.1 KiB
Kotlin
Vendored

// CHECK:
// Mangled name: XAlign
// Public signature: /XAlign|null[0]
class XAlign {
// CHECK:
// Mangled name: XAlign{}bits
// Public signature: /XAlign.bits|-2314303284935245061[0]
// Public signature debug description: {}bits
val bits: Long
// CHECK JVM_IR:
// Mangled name: XAlign#<get-bits>(){}kotlin.Long
// Public signature: /XAlign.bits.<get-bits>|-8015099027032327963[0]
// Public signature debug description: <get-bits>(){}kotlin.Long
// CHECK JS_IR NATIVE:
// Mangled name: XAlign#<get-bits>(){}
// Public signature: /XAlign.bits.<get-bits>|-3920031234897259044[0]
// Public signature debug description: <get-bits>(){}
get
// CHECK:
// Mangled name: XAlign#<init>(){}
// Public signature: /XAlign.<init>|-5645683436151566731[0]
// Public signature debug description: <init>(){}
constructor()
// CHECK:
// Mangled name: XAlign#<init>(kotlin.Long){}
// Public signature: /XAlign.<init>|5217973964116651322[0]
// Public signature debug description: <init>(kotlin.Long){}
constructor(bits: Long) /* primary */
}