mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
javac indices: reorder anonymous indexing to match with intellij idea stub indices
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
class Test {
|
||||
|
||||
void m() {
|
||||
new Foo1(new Foo2() {
|
||||
void m() {
|
||||
new Foo3() {};
|
||||
}
|
||||
}) {
|
||||
void m1() {
|
||||
new Foo4() {};
|
||||
}
|
||||
|
||||
void m2() {
|
||||
new Foo5(new Foo6() {}) {};
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user