bogdoll
03/05/2022, 1:39 PMDominaezzz
03/05/2022, 1:54 PMRob Elliot
03/05/2022, 2:13 PMkotlin.collections.LinkedHashMap, which is an expect class.
Unfortunately IntelliJ doesn't make it easy to go from an expect class to an actual class (as far as I can see) but if you look in kotlin-stdlib-1.6.10.jar!/kotlin/collections/TypeAliases.kt you'll see that public actual typealias LinkedHashMap<K, V> = java.util.LinkedHashMap<K, V>.Youssef Shoaib [MOD]
03/05/2022, 3:49 PMUnfortunately IntelliJ doesn't make it easy to go from anA good trick I've used is to Ctrl-Shift-F (Search everywhere) and then Scope -> All Places and search for ato anexpect classactual class
actual class ClassName or actual typealias ClassNameRob Elliot
03/05/2022, 3:51 PMRob Elliot
03/05/2022, 3:58 PMkotlin.collections.MutableMap to its implementations either... looks like some of the hierarchy navigation doesn't work inside dependency sources?