mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 12:52:11 +00:00
Added: #1383 AS Debugger - debugging nested SWFs
This commit is contained in:
@@ -176,7 +176,7 @@ public class BreakpointListDialog extends AppDialog {
|
||||
}
|
||||
}*/
|
||||
Pattern abcPcodePattern = Pattern.compile("^#PCODE abc:(?<abc>[0-9]+),body:(?<body>[0-9]+);.*");
|
||||
Matcher m = abcPcodePattern.matcher(breakpoint.scriptName);
|
||||
Matcher m = abcPcodePattern.matcher(breakpoint.scriptName);
|
||||
if (m.matches()) {
|
||||
int abcIndex = Integer.parseInt(m.group("abc"));
|
||||
int bodyIndex = Integer.parseInt(m.group("body"));
|
||||
|
||||
Reference in New Issue
Block a user