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

@@ -8,7 +8,27 @@ public class TestClassNestedInitializer {
{
this.secret = "one";
}
};
System.out.println(var1.secret);
};// 22
System.out.println(var1.secret);// 23
}
}
class 'pkg/TestClassNestedInitializer$1' {
method '<init> (Lpkg/TestClassNestedInitializer;)V' {
a 8
c 8
}
}
class 'pkg/TestClassNestedInitializer' {
method 'test ()V' {
8 10
9 11
d 11
10 11
}
}
Lines mapping:
22 <-> 11
23 <-> 12