mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
GitOrigin-RevId: 41773788603b20705312f4d6d0a160bfdb1cfc1d
37 lines
552 B
Plaintext
37 lines
552 B
Plaintext
package pkg;
|
|
|
|
class TestCodeConstructs {
|
|
private int count = 0;
|
|
|
|
void expressions() {
|
|
(new String()).hashCode();// 20
|
|
}// 21
|
|
|
|
Integer fieldIncrement() {
|
|
return new Integer(this.count++);// 25
|
|
}
|
|
}
|
|
|
|
class 'pkg/TestCodeConstructs' {
|
|
method 'expressions ()V' {
|
|
7 6
|
|
8 6
|
|
9 6
|
|
b 7
|
|
}
|
|
|
|
method 'fieldIncrement ()Ljava/lang/Integer;' {
|
|
4 10
|
|
6 10
|
|
7 10
|
|
8 10
|
|
b 10
|
|
12 10
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
20 <-> 7
|
|
21 <-> 8
|
|
25 <-> 11
|