[java decompiler] corrects test data

This commit is contained in:
Roman Shevchenko
2018-01-11 15:38:49 +01:00
parent 0bb1f6801c
commit 730bf5dfcd
13 changed files with 31 additions and 27 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,19 @@
package pkg;
class TestSuperInner extends TestSuperInnerBase {
protected abstract class Inner2 extends TestSuperInnerBase.Inner {
protected Inner2() {
super();// 4
}
}
}
class 'pkg/TestSuperInner$Inner2' {
method '<init> (Lpkg/TestSuperInner;)V' {
7 5
a 6
}
}
Lines mapping:
4 <-> 6

View File

@@ -1,17 +0,0 @@
class TestSuperInner2 extends TestSuperInner {
protected class Inner2 extends TestSuperInner.Inner {
protected Inner2() {
super();// 2
}
}
}
class 'TestSuperInner2$Inner2' {
method '<init> (LTestSuperInner2;)V' {
7 3
a 4
}
}
Lines mapping:
2 <-> 4

View File

@@ -1,6 +1,5 @@
public class TestSuperInner {
protected abstract class Inner {
protected Inner() {
}
}
package pkg;
class TestSuperInner extends TestSuperInnerBase {
protected abstract class Inner2 extends Inner { }
}

View File

@@ -1,4 +0,0 @@
class TestSuperInner2 extends TestSuperInner {
protected class Inner2 extends Inner {
}
}

View File

@@ -0,0 +1,7 @@
package pkg;
class TestSuperInnerBase {
protected abstract class Inner {
protected Inner() { }
}
}