mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-22 17:22:18 -05:00
30 lines
445 B
Plaintext
30 lines
445 B
Plaintext
package pkg;
|
|
|
|
class TestCodeConstructs {
|
|
private int count = 0;
|
|
|
|
void expressions() {
|
|
(new String()).hashCode();// 20
|
|
}
|
|
|
|
Integer fieldIncrement() {
|
|
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
|