blob: 7d7eaf5328df89c8d467b0db1edee9772af4997d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
"use strict";
var self = this;
self.onmessage = function (event) {
if (event.data !== "resolve") {
return;
}
// This then-handler should be executed inside the top-level event loop,
// within the context of the debugger's global.
Promise.resolve().then(function () {
var dbg = new Debugger(global);
dbg.onDebuggerStatement = function () {
self.onmessage = function (event) {
if (event.data !== "resume") {
return;
}
// This then-handler should be executed inside the nested event loop,
// within the context of the debugger's global.
Promise.resolve().then(function () {
postMessage("resumed");
leaveEventLoop();
});
};
postMessage("paused");
enterEventLoop();
};
postMessage("resolved");
});
};
|