summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/onEnterFrame-async-resumption-03.js
blob: 6567a61d676a9b79ee46eaf22f6b945ad799fe18 (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
// A Debugger can {return:} from onEnterFrame at any resume point in an async function.
// The async function's promise is resolved with the returned value.

let g = newGlobal({newCompartment: true});
g.eval(`async function f(x) { await x; }`);

let dbg = new Debugger(g);
function test(when) {
    let hits = 0;
    dbg.onEnterFrame = frame => {
        if (frame.type == "call" && frame.callee.name === "f") {
            if (hits++ == when) {
                return {return: "exit"};
            }
        }
    };

    let result = undefined;
    let finished = false;
    g.f("hello").then(value => { result = value; finished = true; });
    drainJobQueue();
    assertEq(finished, true);
    assertEq(hits, when + 1);
    assertEq(result, "exit");
}

// onEnterFrame with hits==0 is not a resume point; {return:} behaves differently there
// (see onEnterFrame-async-resumption-02.js).
test(1);  // force return from first resume point, immediately after the await instruction