mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
search java direct inheritors using javac indices (initial)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class Bar {
|
||||
|
||||
void m() {
|
||||
Foo f = new Foo() {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
void m2() {
|
||||
Foo f2 = new Foo() {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public class Fo<caret>o {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class FooImpl extends Foo {
|
||||
|
||||
void m() {
|
||||
Foo f = new Foo() {
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user