smichel17
09/02/2021, 1:50 PMimport foo.bar.Baz
tells me that I can find the Baz
source code in …/foo/bar/Baz.java
. However, in Kotlin I might have multiple classes per file, or maybe I'm importing an extension function, it's no longer clear which file I actually have to look in to find the definition. How do you handle this?
This is really more of a #codingconventions question, but I suspect I'm going to get a bunch of "it doesn't bother me; I just <Ctrl-b>
in IntelliJ" answers, whereas folks here might care more.