<@U0MEUGTCM> well, for example in this case `Foo.B...
# reflect
u
@oshai well, for example in this case
Foo.Bar
will be detected as companion, while it's not
Copy code
class Foo {
    object Bar
    
    companion object {
        @JvmField
        val Bar = null
    }
}