fernflower/testData/results/TestClassSwitch.dec

34 lines
522 B
Plaintext
Raw Normal View History

package pkg;
2014-08-13 22:17:21 +02:00
public class TestClassSwitch {
public void testCaseOrder(int var1) {
2014-12-25 21:36:19 +03:00
switch(var1) {// 22
2014-08-13 22:17:21 +02:00
case 5:
2014-12-25 21:36:19 +03:00
System.out.println(5);// 27
2014-08-13 22:17:21 +02:00
default:
2014-12-25 21:36:19 +03:00
return;// 29
2014-08-13 22:17:21 +02:00
case 13:
2014-12-25 21:36:19 +03:00
System.out.println(13);// 24
2014-08-13 22:17:21 +02:00
}
}
}
2014-12-25 21:36:19 +03:00
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