Files
fernflower/testData/results/TestInUse.dec
2017-04-28 12:19:11 +03:00

54 lines
737 B
Plaintext

package pkg;
public class TestInUse {
public int getInt() {
return 42;// 5
}
protected int reuse() {
int i = 0;// 9
int d = 0;
int result = 0;// 10
do {
d = this.getInt();// 12
result -= d;// 13
++i;// 15
} while(i < 10);
return result;// 16
}
}
class 'pkg/TestInUse' {
method 'getInt ()I' {
0 4
2 4
}
method 'reuse ()I' {
0 8
1 8
2 9
3 9
4 10
5 10
7 13
a 13
e 14
f 15
13 16
15 16
19 18
}
}
Lines mapping:
5 <-> 5
9 <-> 9
10 <-> 11
12 <-> 14
13 <-> 15
15 <-> 16
16 <-> 19