26 lines
338 B
Kotlin
Vendored
26 lines
338 B
Kotlin
Vendored
class RootBus : MessageBusImpl {
|
|
constructor() /* primary */ {
|
|
super/*MessageBusImpl*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
open class MessageBusImpl {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val parentBus: Any?
|
|
get
|
|
|
|
init {
|
|
<this> as RootBus /*~> Unit */
|
|
<this>.#parentBus = null
|
|
}
|
|
|
|
}
|