dean
07/04/2016, 2:20 PMval 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
}
}