What do you think about adding special highlightin...
# intellij
k
What do you think about adding special highlighting for extension member calls on nullable receiver types? I think the following code looks really weird when you don't know that
baz
is declared as an extension on `Bar?`:
Copy code
foo?.bar().baz()

...

fun Bar?.baz() { }