smichel17
09/02/2021, 3:02 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. Does this bother anyone else and how do you handle it?hho
09/02/2021, 3:14 PMdata class
in a separate file. 🤷♂️smichel17
09/02/2021, 3:17 PMchristophsturm
09/02/2021, 3:38 PMsmichel17
09/02/2021, 3:39 PMchristophsturm
09/02/2021, 3:39 PMsmichel17
09/02/2021, 5:05 PMchristophsturm
09/02/2021, 5:45 PMsmichel17
09/02/2021, 5:51 PM…/foo/bar/Baz.kt
with package foo.bar.baz
?