decompiler: major line numbers fixes

This commit is contained in:
Egor.Ushakov
2014-12-25 21:36:19 +03:00
parent 4a6a658b4c
commit 4ee8ad716d
49 changed files with 1124 additions and 142 deletions

View File

@@ -0,0 +1,19 @@
package pkg;
import java.lang.Override;
import java.lang.Runnable;
public class TestThrowException {
Runnable r;
public TestThrowException(int a) {
if (a > 0) {
throw new IllegalArgumentException("xxx");
}
r = new Runnable() {
@Override
public void run() {
int a = 5;
}
};
}
}