mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 12:00:53 +00:00
Fixed: #270 AS3 decompilation - loop followed by try
This commit is contained in:
@@ -2189,6 +2189,7 @@ public class AVM2Graph extends Graph {
|
||||
ts.targetPart = searchPart(code.adr2pos(body.exceptions[e].target), allParts);
|
||||
int startIp = code.adr2pos(body.exceptions[e].start, true);
|
||||
int endIp = code.adr2pos(body.exceptions[e].end, true);
|
||||
ts.startPart = searchPart(startIp, allParts);
|
||||
for (GraphPart p : allParts) {
|
||||
if (p.start >= startIp && p.start < endIp) {
|
||||
ts.throwingParts.add(p);
|
||||
|
||||
Reference in New Issue
Block a user