dokka
dokka copied to clipboard
`kotlin-as-java-plugin` not hoisting normal `@JvmStatic` properties
For the code
import kotlin.properties.Delegates
class Foo {
companion object {
@JvmStatic
var bar: String by Delegates.notNull()
}
}
Despite bar being @JvmStatic, the generated docs do not hoist it up to static level, but keep it in the companion: