e6f4d6e6fa
^KT-65406
27 lines
339 B
Kotlin
Vendored
27 lines
339 B
Kotlin
Vendored
open class MessageBusImpl {
|
|
val parentBus: Any?
|
|
get
|
|
|
|
init {
|
|
<this> as RootBus /*~> Unit */
|
|
<this>.#parentBus = null
|
|
}
|
|
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class RootBus : MessageBusImpl {
|
|
constructor() /* primary */ {
|
|
super/*MessageBusImpl*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|