javac indices: reorder anonymous indexing to match with intellij idea stub indices

This commit is contained in:
Dmitry Batkovich
2018-04-03 18:57:21 +03:00
parent 14525d5ca1
commit 99bd0d5cb3
13 changed files with 171 additions and 34 deletions
@@ -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() {}) {};
}
};
}
}