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

42 lines
562 B

package pkg;
public enum TestEnum {
E1,
E2 {
public void m() {
}
},
E3("-"),
E4("+") {
public void m() {
}
};
private String s;
public void m() {
}
private TestEnum() {
this("?");// 34
}
private TestEnum(@Deprecated String var3) {
this.s = var3;// 35
}
}
class 'pkg/TestEnum' {
method '<init> (Ljava/lang/String;I)V' {
3 20
5 20
}
method '<init> (Ljava/lang/String;ILjava/lang/String;)V' {
8 24
}
}
Lines mapping:
34 <-> 21
35 <-> 25