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

89 lines
1.2 KiB

package pkg;
class TestInner2 {
private TestInner2() {
}// 4
private TestInner2(int a) {
}// 5
static class AnotherStatic2 extends TestInner2 {
AnotherStatic2() {
super(2);// 25
}// 26
}
class Another2 extends TestInner2 {
Another2() {
super(2);// 19
}// 20
}
static class AnotherStatic extends TestInner2 {
AnotherStatic() {
}// 14
}
class Another extends TestInner2 {
Another() {
}// 9
}
}
class 'pkg/TestInner2' {
method '<init> ()V' {
4 4
}
method '<init> (I)V' {
4 7
}
}
class 'pkg/TestInner2$AnotherStatic2' {
method '<init> ()V' {
1 11
2 11
3 11
6 12
}
}
class 'pkg/TestInner2$Another2' {
method '<init> (Lpkg/TestInner2;)V' {
6 17
7 17
8 17
b 18
}
}
class 'pkg/TestInner2$AnotherStatic' {
method '<init> ()V' {
1 23
2 23
5 24
}
}
class 'pkg/TestInner2$Another' {
method '<init> (Lpkg/TestInner2;)V' {
6 29
7 29
a 30
}
}
Lines mapping:
4 <-> 5
5 <-> 8
8 <-> 30
9 <-> 31
13 <-> 24
14 <-> 25
19 <-> 18
20 <-> 19
25 <-> 12
26 <-> 13
Not mapped:
18