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.
Please sign in to leave a comment.
Better find usages not implemented yet, but definetely will be implemented. Sorry for inconveniences.
Best regards,
Alexander Podkhalyuzin.
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.
Ok, I'll check it some day, vote for it: http://youtrack.jetbrains.net/issue/SCL-2490
Best regards,
Alexander Podkhalyuzin.