Find Usages: Support of secondary constructors and delegation calls

This commit is contained in:
Alexey Sedunov
2015-03-19 21:08:52 +03:00
parent 312a1db273
commit d19e6337a3
28 changed files with 342 additions and 27 deletions
@@ -0,0 +1,13 @@
class A: J {
constructor(): super(1) {
}
}
class B: J(1) {
}
fun test() {
J(2)
}