Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/results/TestClassSimpleBytecodeMapp...

70 lines
1.1 KiB

10 years ago
package pkg;
public class TestClassSimpleBytecodeMapping {
public int test() {
System.out.println("before");
this.run(new Runnable() {
public void run() {
System.out.println("Runnable");
}
});
10 years ago
if(Math.random() > 0.0D) {
System.out.println("0");
return 0;
} else {
System.out.println("1");
return 1;
}
}
void run(Runnable var1) {
var1.run();
}
10 years ago
}
class 'pkg/TestClassSimpleBytecodeMapping$1' {
method 'run ()V' {
0 7
3 7
5 7
}
}
class 'pkg/TestClassSimpleBytecodeMapping' {
method 'test ()I' {
10 years ago
0 4
3 4
5 4
11 5
14 10
17 10
18 10
19 10
1c 11
1f 11
21 11
24 12
25 12
26 14
29 14
2b 14
2e 15
2f 15
}
method 'run (Ljava/lang/Runnable;)V' {
1 20
10 years ago
}
}
Lines mapping:
12 <-> 2
14 <-> 3
17 <-> 5
21 <-> 8
22 <-> 9
23 <-> 10
25 <-> 12
26 <-> 13
31 <-> 18