blob: 350fa508a9c6c283fd09b48146dbbf84d3c561f2 (
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
|
// Test that Debugger.Frame.prototype.this works on a suspended async
// 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 promise = g.f();
assertEq(!!frame, true);
assertEq(frame.this, gDO.makeDebuggeeValue(g.context));
await promise;
assertThrowsInstanceOf(() => frame.this, Error);
})();
|