Implement call hierarchy

This commit is contained in:
Alexey Sedunov
2013-09-11 15:23:22 +04:00
parent e4936549ee
commit 41ea7da1e3
61 changed files with 1987 additions and 20 deletions
@@ -0,0 +1,7 @@
class JA {
public String name = new KA().foo("");
public String foo() {
return new KA().foo("");
}
}