mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 13:14:53 +00:00
Fixed: AS decompilation - Gotos handling vs and/or
This commit is contained in:
@@ -2048,8 +2048,11 @@ public class Graph {
|
||||
boolean parseNext = true;
|
||||
|
||||
//****************************DECOMPILING PART*************
|
||||
GraphPartMarkedArrayList<GraphTargetItem> output = new GraphPartMarkedArrayList<>();
|
||||
if (stack.isEmpty() && (currentRet instanceof GraphPartMarkedArrayList)) {
|
||||
((GraphPartMarkedArrayList) currentRet).clearCurrentParts();
|
||||
}
|
||||
|
||||
GraphPartMarkedArrayList<GraphTargetItem> output = new GraphPartMarkedArrayList<>();
|
||||
output.startPart(part);
|
||||
if (currentRet instanceof GraphPartMarkedArrayList) {
|
||||
((GraphPartMarkedArrayList) currentRet).startPart(part);
|
||||
|
||||
Reference in New Issue
Block a user