We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90beb84 commit 719e752Copy full SHA for 719e752
src/addons/pause.js
@@ -54,6 +54,9 @@ export default function ({ scaffolding }) {
54
stackFrame.executionContext.timer.startTime += dt;
55
}
56
// Compiler state is stored differently
57
+ if (thread.compatibilityStackFrame && thread.compatibilityStackFrame.timer) {
58
+ thread.compatibilityStackFrame.timer.startTime += now - pauseState.pauseTime;
59
+ }
60
if (thread.timer) {
61
const dt = now - pauseState.pauseTime;
62
thread.timer.startTime += dt;
0 commit comments