summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-script-06.js
blob: a01000347ac7360561ab585b976f077daa2e3e54 (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
41
42
43
44
45
46
47
48
// Frame.prototype.script for async generator frames.

load(libdir + "asserts.js");

var g = newGlobal({ newCompartment: true });
var dbg = new Debugger(g);
g.eval(`
async function* f() {
  await Promise.resolve();
}
`);

let frame;
let script;
dbg.onEnterFrame = function(f) {
  frame = f;
  script = frame.script;
};

const it = g.f();

assertEq(frame instanceof Debugger.Frame, true);
assertEq(script instanceof Debugger.Script, true);
assertEq(frame.script, script);

let lastFrame = frame;
let lastScript = script;
frame = null;
script = null;

let promise = it.next();

assertEq(frame, lastFrame);
assertEq(script, lastScript);
assertEq(frame.script, script);

lastFrame = frame;
lastScript = script;
frame = null;
script = null;

promise.then(() => {
  assertEq(frame, lastFrame);
  assertEq(script, lastScript);

  // The frame has finished evaluating, so the script is no longer accessible.
  assertThrowsInstanceOf(() => frame.script, Error);
});