decompiler: fixed line mapping in try-catch block

This commit is contained in:
Egor.Ushakov
2014-10-21 19:10:42 +04:00
parent d00bc545fe
commit 0d80e663ae
9 changed files with 55 additions and 24 deletions

View File

@@ -1,6 +1,21 @@
package pkg;
public class TestTryCatchFinally {
public void test1(String var1) {
try {
System.out.println("sout1");
} catch (Exception var9) {
try {
System.out.println("sout2");
} catch (Exception var8) {
;
}
} finally {
System.out.println("finally");
}
}
public int test(String var1) {
try {
int var2 = Integer.parseInt(var1);