summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-onStep-generator-resumption-01.js
blob: ad61ccd9e4a892dedb2f4fe558c6e6441532765b (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
// The debugger can't force return from a generator before the initial yield.

let g = newGlobal({newCompartment: true});
g.eval(`
  function* f() {
    yield 1;
  }
`);

let dbg = new Debugger(g);
let steps = 0;
let uncaughtErrorsReported = 0;
dbg.onEnterFrame = frame => {
  assertEq(frame.callee.name, "f");
  dbg.onEnterFrame = undefined;
  frame.onStep = () => {
    steps++;

    // This test case never resumes the generator after the initial
    // yield. Therefore the initial yield has not happened yet. So this
    // force-return will be an error.
    return {return: "ponies"};
  };

  // Having an onPop hook exercises some assertions that don't happen
  // otherwise.
  frame.onPop = completion => {};
};

dbg.uncaughtExceptionHook = (reason) => {
  // When onEnterFrame returns an invalid resumption value,
  // the error is reported here.
  assertEq(reason instanceof TypeError, true);
  uncaughtErrorsReported++;
  return undefined;  // Cancel the force-return. Let the debuggee continue.
};

let result = g.f();
assertEq(result instanceof g.f, true);

assertEq(steps > 0, true);
assertEq(uncaughtErrorsReported, steps);