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/TestEnum.dec

64 lines
817 B

package pkg;
public enum TestEnum {
E1,
E2 {
public void m() {
}// 22
},
E3("-"),
E4("+") {
public void m() {
}// 27
};
private String s;
public void m() {
}// 30
private TestEnum() {
this("?");
}// 34
private TestEnum(@Deprecated String var3) {
this.s = var3;
}// 35
}
class 'pkg/TestEnum$1' {
method 'm ()V' {
0 6
}
}
class 'pkg/TestEnum$2' {
method 'm ()V' {
0 11
}
}
class 'pkg/TestEnum' {
method 'm ()V' {
0 17
}
method '<init> (Ljava/lang/String;I)V' {
3 20
5 20
8 21
}
method '<init> (Ljava/lang/String;ILjava/lang/String;)V' {
8 24
b 25
}
}
Lines mapping:
22 <-> 7
27 <-> 12
30 <-> 18
34 <-> 22
35 <-> 26