summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Environment-02.js
blob: 77af721a293021cae4a5e284a73818719797e189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// The last Environment on the environment chain always has .type == "object" and .object === the global object.

var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
var gw = dbg.addDebuggee(g);
g.eval("function h() { debugger; }");
var hits = 0;
dbg.onDebuggerStatement = function (hframe) {
    var env = hframe.older.environment;
    while (env.parent)
        env = env.parent;
    assertEq(env.type, "object");
    assertEq(env.object, gw);
    hits++;
};

g.eval("h();");
g.eval("(function () { h(); return []; })();");
g.eval("with (Math) { h(-2 * PI); }");
assertEq(hits, 3);