mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
search java direct inheritors using javac indices (initial):
* use only one search adapter * resolve anonymous child classes (e.g A$2$B) * lazy iterate over candidates
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
public class Baz {
|
||||
|
||||
void m() {
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
|
||||
class FooImpl2 extends Foo {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user