karelpeeters
06/18/2019, 1:41 PMdata class Test(val x: Int)
fun foo() = Test(3)
fun bar() {
val test = foo()
println(test)
}
Find usages of the Test class only yields the constructor call in foo
, nothing about bar
, even though it does obviously use it.
I looked trough the find unsages settings, and there you can select a couple more things, eg "usages of functions" and "usages of properties", but that still does't cover my bar
example.
Is there a way to really find all usages?louis993546
06/18/2019, 1:45 PMkarelpeeters
06/18/2019, 1:49 PMMike
06/18/2019, 2:36 PMDico
06/18/2019, 3:21 PMAlowaniak
06/18/2019, 5:17 PMkarelpeeters
06/18/2019, 7:01 PMkarelpeeters
06/18/2019, 7:01 PMvar
.