fernflower/testData/results/TestCodeConstructs.dec

30 lines
445 B
Plaintext
Raw Normal View History

2014-09-01 10:54:33 -04:00
package pkg;
class TestCodeConstructs {
private int count = 0;
void expressions() {
2014-12-25 13:36:19 -05:00
(new String()).hashCode();// 20
2014-09-01 10:54:33 -04:00
}
2014-09-07 08:44:22 -04:00
Integer fieldIncrement() {
2014-12-25 13:36:19 -05:00
return new Integer(this.count++);// 25
2014-09-01 10:54:33 -04:00
}
}
2014-12-25 13:36:19 -05:00
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