Haha sorry - ```val KClass<out Any>.companio...
# announcements
d
Haha sorry -
Copy code
val KClass<out Any>.companionOwner: KClass<out Any>?
    get() {
        if(this.objectInstance != null) {
            return this
        } else if(this.java.enclosingClass != null) {
            return this.java.enclosingClass!!.kotlin.companionOwner
        } else {
            return null
        }
    }