blob: ae774b8784314befdf476951feeb4fb000b45fa2 (
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
31
32
|
// An explicit async stack should be available via olderSavedFrame.
// This test makes sure that "main" shows up as an async saved frame properly
// when the promise is resumed normally outside "main()".
var g = newGlobal({ newCompartment: true });
var dbg = new Debugger(g);
let done = false;
dbg.onDebuggerStatement = function (frame) {
// This frame has an "olderSavedFrame" because "run()" is an async function
// and those have explicit async stacks attached to them.
const parent = frame.olderSavedFrame;
assertEq(typeof parent.source, "string");
assertEq(parent.line, 9);
assertEq(parent.column, 3);
assertEq(parent.asyncCause, "async");
assertEq(parent.functionDisplayName, "main");
done = true;
};
g.eval(`
let draining = false;
async function run() {
await Promise.resolve();
debugger;
}
(function main() {
run();
})();
drainJobQueue();
`);
assertEq(done, true);
|