How to find usages for class primary constructor?

the code below:

class Test(val a:Int)
case class TestCase(a:Int)

val a = new Test(1)
val b = TestCase(1)
val c = new TestCase(2)

val d:Test = _
val e:TestCase = _



how to find the first three usages except the late two.
0
3 comments

Better find usages not implemented yet, but definetely will be implemented. Sorry for inconveniences.

Best regards,
Alexander Podkhalyuzin.

0

since "find usages" is partly implemented, can't the call hierarchy be activated? i always assumed it to be based on find usage, so if one works, so should the other.

0

Ok, I'll check it some day, vote for it: http://youtrack.jetbrains.net/issue/SCL-2490

Best regards,
Alexander Podkhalyuzin.

0

Please sign in to leave a comment.