search java direct inheritors using javac indices (initial): do not process lots of non-direct inheritors for library classes (IDEA-CR-14364)

This commit is contained in:
Dmitry Batkovich
2016-10-12 02:01:14 +03:00
parent 53c37a01a7
commit bc7bbf4866
8 changed files with 95 additions and 96 deletions
@@ -0,0 +1,14 @@
import java.util.List;
import java.util.AbstractList;
class Foo {
interface ListImpl extends List {
}
abstract static class AbstractListImpl extends AbstractList {
}
}