Type Hierarchy: Support Type Hierarchy on references inside of super type call entries

#KT-9125 Fixed
This commit is contained in:
Alexey Sedunov
2016-08-18 18:55:00 +03:00
parent cd1943c8b0
commit 47d4454590
9 changed files with 101 additions and 17 deletions
@@ -0,0 +1,5 @@
class A {
A(int i) {
}
}
@@ -0,0 +1,3 @@
open class B : <caret>A(1)
class C : B()
@@ -0,0 +1,7 @@
<node text="Object (java.lang)">
<node text="A ()" base="true">
<node text="B ()">
<node text="C ()"/>
</node>
</node>
</node>