Fixed AS3 Debugging P-code inside nested functions

Fixed AS3 Debugging - show (and click through) proper call stack
This commit is contained in:
Jindra Petřík
2023-11-05 17:17:00 +01:00
parent 0f0e6d880d
commit 8b3b740b44
6 changed files with 51 additions and 16 deletions

View File

@@ -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) {