search java direct inheritors using javac indices (initial)

This commit is contained in:
Dmitry Batkovich
2016-10-10 20:27:20 +03:00
parent a6ec212d04
commit 672ed0ac68
11 changed files with 478 additions and 29 deletions
@@ -0,0 +1,9 @@
class FooImpl extends Foo {
void m() {
Foo f = new Foo() {
};
}
}