mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-03 18:44:46 +00:00
iframeloaded special case when it hits next graphpart (will this happen?)
This commit is contained in:
@@ -2085,6 +2085,13 @@ public class Graph {
|
||||
output.addAll(ex.getOutput());
|
||||
for (GraphPart p : allParts) {
|
||||
if (p.containsIP(ex.getIp())) {
|
||||
if (ipStart == p.start) {
|
||||
//can this happen? TODO: find some example in the wild
|
||||
currentRet.addAll(output);
|
||||
//to check for stopparts,etc. we need to call printGraph again
|
||||
part = p;
|
||||
return printGraph(foundGotos, partCodes, partCodePos, visited, localData, stack, allParts, parent, part, stopPart, stopPartKind, loops, throwStates, ret, staticOperation, path, recursionLevel);
|
||||
}
|
||||
exHappened = true;
|
||||
ipStart = ex.getIp();
|
||||
part = p;
|
||||
|
||||
Reference in New Issue
Block a user