mirror of
https://github.com/moparisthebest/fernflower
synced 2025-02-21 21:21:45 -05:00
34 lines
522 B
Plaintext
34 lines
522 B
Plaintext
package pkg;
|
|
|
|
public class TestClassSwitch {
|
|
public void testCaseOrder(int var1) {
|
|
switch(var1) {// 22
|
|
case 5:
|
|
System.out.println(5);// 27
|
|
default:
|
|
return;// 29
|
|
case 13:
|
|
System.out.println(13);// 24
|
|
}
|
|
}
|
|
}
|
|
|
|
class 'pkg/TestClassSwitch' {
|
|
method 'testCaseOrder (I)V' {
|
|
1 4
|
|
1c 10
|
|
1f 10
|
|
21 10
|
|
25 6
|
|
28 6
|
|
29 6
|
|
2c 8
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
22 <-> 5
|
|
24 <-> 11
|
|
27 <-> 7
|
|
29 <-> 9
|