mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
- update copyright - fix warnings - fix tests - revert variable names - support not used variables for idea debugger GitOrigin-RevId: 1d9810f75417aadc18943277a4eb9de152dd9008
40 lines
550 B
Plaintext
40 lines
550 B
Plaintext
public class TestMethodReferenceSameName {
|
|
R1 r;
|
|
|
|
private void foo() {
|
|
R1 var10000 = this.r;// 5
|
|
(var10000::foo).run();
|
|
}// 6
|
|
|
|
class R1 {
|
|
void foo() {
|
|
}// 9
|
|
}
|
|
}
|
|
|
|
class 'TestMethodReferenceSameName' {
|
|
method 'foo ()V' {
|
|
0 4
|
|
1 4
|
|
2 4
|
|
3 4
|
|
e 5
|
|
f 5
|
|
10 5
|
|
11 5
|
|
12 5
|
|
13 6
|
|
}
|
|
}
|
|
|
|
class 'TestMethodReferenceSameName$R1' {
|
|
method 'foo ()V' {
|
|
0 10
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
5 <-> 5
|
|
6 <-> 7
|
|
9 <-> 11
|