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,17 @@
class A: J {
constructor(i: Int): super() {
}
constructor() {
}
}
class B: J() {
}
fun test() {
J()
}