Call Hierarchy: Filter out usages inside of import directives

This commit is contained in:
Alexey Sedunov
2014-12-08 16:33:40 +03:00
parent 15d7932491
commit 7d1ed507a7
5 changed files with 29 additions and 2 deletions
@@ -0,0 +1,3 @@
<node text="p.foo() (p)" base="true">
<node text="q.bar() (q)"/>
</node>
@@ -0,0 +1,5 @@
package p
fun <caret>foo() {
}
@@ -0,0 +1,7 @@
package q
import p.foo
fun bar() {
foo()
}