blob: 43aec1f2c5b42170951a9761f3916db53b0e1b19 (
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
|
// Test that Debugger.Frame.prototype.this works on a suspended async
// generator function.
load(libdir + "asserts.js");
const g = newGlobal({ newCompartment: true });
const dbg = new Debugger();
const gDO = dbg.addDebuggee(g);
g.eval(`
var context = {};
var f = async function*() {
await Promise.resolve();
return this;
}.bind(context);
`);
let frame;
dbg.onEnterFrame = f => {
frame = f;
assertEq(frame.this, gDO.makeDebuggeeValue(g.context));
dbg.onEnterFrame = undefined;
};
(async () => {
const it = g.f();
assertEq(!!frame, true);
assertEq(frame.this, gDO.makeDebuggeeValue(g.context));
const promise = it.next();
assertEq(frame.this, gDO.makeDebuggeeValue(g.context));
await promise;
assertThrowsInstanceOf(() => frame.this, Error);
})();
|