For the code ```kotlin 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: <img width="1365" height="623" alt="Image" src="https://github.com/user-attachments/assets/e3103375-6bd5-4f5a-b30e-9d4b205e3130" /> <img width="1366" height="621" alt="Image" src="https://github.com/user-attachments/assets/d3cd257c-68e4-42be-81f7-9d54749c9e84" />