Show call sites of overriden members in "Caller Hierarchy"

#KT-4395 Fixed
This commit is contained in:
Alexey Sedunov
2014-01-15 16:18:40 +04:00
parent 7ec21fc5ca
commit 3e6f879571
10 changed files with 113 additions and 64 deletions
@@ -1,7 +1,7 @@
class JA {
public String name = new KA().foo("");
public String name = new KBase().foo("") + new KA().foo("");
public String foo() {
return new KA().foo("");
return new KBase().foo("") + new KA().foo("");
}
}