Call Hierarchy: Find implicit constructor calls in Java code

This commit is contained in:
Alexey Sedunov
2015-07-08 17:08:07 +03:00
parent 8104b899aa
commit 46dcfb508e
8 changed files with 62 additions and 1 deletions
@@ -0,0 +1,4 @@
<node text="B ()" base="true">
<node text="A.A(Int) ()"/>
<node text="JJ.JJ() ()"/>
</node>
@@ -0,0 +1,7 @@
open class <caret>B()
open class A : B {
constructor(a: Int) {
}
}
@@ -0,0 +1,5 @@
class JJ extends B {
JJ() {
}
}
@@ -0,0 +1,4 @@
<node text="B.B() ()" base="true">
<node text="JJ.JJ() ()"/>
<node text="A.A(Int) ()"/>
</node>
@@ -0,0 +1,11 @@
open class B {
<caret>constructor() {
}
}
open class A : B {
constructor(a: Int) {
}
}
@@ -0,0 +1,5 @@
class JJ extends B {
JJ() {
}
}