summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Environment-setVariable-15.js
blob: abb8a9687cce55c370239ab9806448d2e3b2ae7d (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
// Debugger.Environment should throw trying to setVariable on a const binding.

load(libdir + "asserts.js");

var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
dbg.addDebuggee(g);

dbg.onEnterFrame = (frame) => {
  frame.onStep = () => {
    if (frame.environment.getVariable("x") === 42) {
      assertThrowsInstanceOf(() => frame.environment.setVariable("x", 43), TypeError);
      assertEq(frame.environment.getVariable("x"), 42);
    }
  };
};

const unaliased = g.parseModule(`
  const x = 42;
  assertEq(x, 42);
`);
moduleLink(unaliased);
moduleEvaluate(unaliased);

const aliased = g.parseModule(`
  const x = 42;
  assertEq(x, 42);

  function closedOver() {
    return x;
  }
`);
moduleLink(aliased);
moduleEvaluate(aliased);