summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-onPop-assign-function.js
blob: 1994248d901df3a2dd8471e99d24e7ca33509ac1 (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
// Changing onPop while the function is dead is allowed.

load(libdir + "asserts.js");

const g = newGlobal({ newCompartment: true });
const dbg = new Debugger(g);

let steps = new Set();
dbg.onDebuggerStatement = function(frame) {
  // Setting 'onPop' while alive is allowed.
  steps.add("debugger 1");
  assertEq(frame.onStack, true);
  frame.onPop = function() {
    steps.add("onpop 1");
  };

  dbg.onDebuggerStatement = function() {
    // Clear the 'onPop' while dead.
    steps.add("debugger 2");
    assertEq(frame.onStack, false);

    // Clearing 'onPop' while dead is allowed.
    frame.onPop = undefined;

      // Setting 'onPop' while dead is allowed.
    frame.onPop = function() {
      steps.add("onpop 2");
    };
  };
};

g.eval(
  `
    function myGen() {
      debugger;
    }

    const g = myGen();

    debugger;
  `
);

assertDeepEq(Array.from(steps), [
  "debugger 1",
  "onpop 1",
  "debugger 2",
]);