Call Hierarchy: Do not interrupt caller hierarchy on non-local caller of local root declaration

#KT-6183 Fixed
This commit is contained in:
Alexey Sedunov
2014-11-12 20:15:19 +03:00
parent 558e038ba5
commit da915aee7e
6 changed files with 166 additions and 171 deletions
@@ -0,0 +1,5 @@
<node text="test1.foo() ()" base="true">
<node text="test1() ()">
<node text="test() ()"/>
</node>
</node>
@@ -0,0 +1,10 @@
fun test() {
test1()
}
fun test1() {
fun foo() {
}
<caret>foo()
}