summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-olderSavedFrame-01.js
blob: 018e6130ea27fbda7cb259806059f11fea57fd7c (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
33
34
35
36
37
38
39
40
// An explicit async stack should be available via olderSavedFrame.
// This test makes sure that "main" shows up as an async saved frame
// instead of "older", even though "drainJobQueue()" is running inside of
// "main()" directly.

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, 12);
  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();

  // Make sure that the test is running within "drainJobQueue()".
  assertEq(draining, true);
  debugger;
}

(function main() {
  run();

  // Force resumption of the "run" function.
  draining = true;
  drainJobQueue();
  draining = false;
})();
`);
assertEq(done, true);