summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-evalWithBindings-07.js
blob: a98b7650cbbc37179c6ac088db5da1ede9fd4f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// var statements in strict evalWithBindings code behave like strict eval.
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    assertEq(frame.evalWithBindings("var i = a*a + b*b; i === 25;", {a: 3, b: 4}).return, true);
    hits++;
};
g.eval("'use strict'; debugger;");
assertEq(hits, 1);
assertEq("i" in g, false);

g.eval("function die() { throw fit; }");
g.eval("Object.defineProperty(this, 'i', {get: die, set: die});");
g.eval("'use strict'; debugger;");
assertEq(hits, 2);