16d1e85932
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.
19 lines
448 B
Kotlin
Vendored
19 lines
448 B
Kotlin
Vendored
// CHECK:
|
|
// Mangled name: IFoo
|
|
// Public signature: /IFoo|null[0]
|
|
interface IFoo {
|
|
// CHECK:
|
|
// Mangled name: IFoo#bar(){}
|
|
// Public signature: /IFoo.bar|496682602797471549[0]
|
|
// Public signature debug description: bar(){}
|
|
fun bar(): Unit
|
|
|
|
// CHECK:
|
|
// Mangled name: IFoo#foo(){}
|
|
// Public signature: /IFoo.foo|-1041209573719867811[0]
|
|
// Public signature debug description: foo(){}
|
|
abstract fun foo(): Unit
|
|
|
|
}
|
|
|