mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +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() {}) {};
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public class Foo1 {
|
||||
Foo1(Foo2 foo2) {}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class Foo2 {
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class Foo3 {
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class Foo4 {
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public class Foo5 {
|
||||
Foo5(Foo6 foo6) {}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class Foo6 {
|
||||
}
|
||||
Reference in New Issue
Block a user