Closed Pato94 closed 4 years ago
As you can see in the following image, there's a little issue with the highlighting at the first method of this object
val a = SomeClass(object : SomeInterface { override fun someMethod() { b = someExternalMethod() c.someCMethod(b) } override fun anotherMethod() { } })
Digging a little deeper, I found out that if you remove the first line of someMethod, highlighting for the second method goes off too!
someMethod
val a = SomeClass(object : SomeInterface { override fun someMethod() { c.someCMethod(b) } override fun anotherMethod() { } })
So I'm not really sure about what's going on here, but this is valid kotlin and I think it should be correctly highlighted.
:wave:
Looks like this was fixed in #21.
As you can see in the following image, there's a little issue with the highlighting at the first method of this object
Basic Example
Digging a little deeper, I found out that if you remove the first line of
someMethod
, highlighting for the second method goes off too!So I'm not really sure about what's going on here, but this is valid kotlin and I think it should be correctly highlighted.
:wave: