This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from BaseMC/upstreamupdate/github.com/fesh0r/f…
…ernflower/master UpstreamUpdate from https://github.com/fesh0r/fernflower
- Loading branch information
Showing
11 changed files
with
138 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package pkg; | ||
|
||
public class TestInheritanceChainCycle extends TestInheritanceChainCycle { | ||
public void printMessage() { | ||
System.out.println("Hello, bug!");// 21 22 23 | ||
}// 24 | ||
} | ||
|
||
class 'pkg/TestInheritanceChainCycle' { | ||
method 'printMessage ()V' { | ||
0 4 | ||
3 4 | ||
5 4 | ||
8 5 | ||
} | ||
} | ||
|
||
Lines mapping: | ||
21 <-> 5 | ||
22 <-> 5 | ||
23 <-> 5 | ||
24 <-> 6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* This code can be assembled with <a href="https://wiki.openjdk.java.net/display/CodeTools/asmtools">asmtools</a> | ||
* using <code>asmtools jasm -g *.jasm</code> command line. | ||
*/ | ||
package pkg; | ||
|
||
super public class TestInheritanceChainCycle | ||
extends TestInheritanceChainCycle | ||
version 52:0 | ||
{ | ||
public Method "<init>":"()V" | ||
stack 1 locals 1 | ||
{ | ||
aload_0; | ||
invokespecial Method java/lang/Object."<init>":"()V"; | ||
return; | ||
} | ||
public Method printMessage:"()V" | ||
stack 2 locals 1 | ||
{ | ||
getstatic Field java/lang/System.out:"Ljava/io/PrintStream;"; | ||
ldc String "Hello, bug!"; | ||
invokevirtual Method java/io/PrintStream.println:"(Ljava/lang/String;)V"; | ||
return; | ||
} | ||
|
||
} // end Class TestInheritanceChainCycle |