decompiler: fixed anonymous class line numbers

This commit is contained in:
Egor.Ushakov
2015-01-21 21:21:43 +03:00
parent 0bba28eded
commit a74f586e34
10 changed files with 148 additions and 33 deletions

View File

@@ -68,4 +68,45 @@ public abstract class TestAnonymousClass {
}
};
}
private final InnerRecursive y = new InnerRecursive(new InnerRecursive(null) {
@Override
void foo() {
int a =5;
int b =5;
int g =5;
}
}) {
int v =5;
int t =5;
int j =5;
int o =5;
};
private final InnerRecursive x = new InnerRecursive(new InnerRecursive(null) {
@Override
void foo() {
int a =5;
int b =5;
int g =5;
}
}) {
int v =5;
int t =5;
int j =5;
int o =5;
};
static class InnerRecursive {
InnerRecursive r;
public InnerRecursive(InnerRecursive r) {
this.r = r;
}
void foo() {
}
}
}