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

@@ -4,10 +4,26 @@ class TestCodeConstructs {
private int count = 0;
void expressions() {
(new String()).hashCode();
(new String()).hashCode();// 20
}
Integer fieldIncrement() {
return new Integer(this.count++);
return new Integer(this.count++);// 25
}
}
class 'pkg/TestCodeConstructs' {
method 'expressions ()V' {
7 6
}
method 'fieldIncrement ()Ljava/lang/Integer;' {
6 10
b 10
12 10
}
}
Lines mapping:
20 <-> 7
25 <-> 11