mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-21 03:25:43 +00:00
Fixed AS3 Debugging P-code inside nested functions
Fixed AS3 Debugging - show (and click through) proper call stack
This commit is contained in:
@@ -374,6 +374,18 @@ public class DebuggerHandler implements DebugConnectionListener {
|
||||
}
|
||||
return modulePaths.get(file);
|
||||
}
|
||||
|
||||
public Integer moduleToMethodIndex(int file) {
|
||||
return moduleToMethodIndex.get(file);
|
||||
}
|
||||
|
||||
public Integer moduleToClassIndex(int file) {
|
||||
return moduleToClassIndex.get(file);
|
||||
}
|
||||
|
||||
public Integer moduleToTraitIndex(int file) {
|
||||
return moduleToTraitIndex.get(file);
|
||||
}
|
||||
|
||||
public synchronized InBreakAtExt getBreakInfo() {
|
||||
if (!paused) {
|
||||
|
||||
Reference in New Issue
Block a user