Files
openide/plugins/java-decompiler/engine/testData/results/TestInheritanceChainCycle.dec
Mikhail Pyltsin da8c3d5728 [java-decompiler] IDEA-346312 adapt patch 005
- update copyright
- fix warnings
- fix tests
- revert variable names
- support not used variables for idea debugger

GitOrigin-RevId: 1d9810f75417aadc18943277a4eb9de152dd9008
2024-10-10 09:55:48 +00:00

28 lines
451 B
Plaintext

package pkg;
public class TestInheritanceChainCycle extends TestInheritanceChainCycle {
public void printMessage() {
System.out.println("Hello, bug!");// 21 22 23
}// 24
}
class 'pkg/TestInheritanceChainCycle' {
method 'printMessage ()V' {
0 4
1 4
2 4
3 4
4 4
5 4
6 4
7 4
8 5
}
}
Lines mapping:
21 <-> 5
22 <-> 5
23 <-> 5
24 <-> 6