summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Object-01.js
blob: c897ee7138b8122c716164a0b62302011820eafc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Debugger.Object basics

var g = newGlobal();
var dbg = Debugger(g);
var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    assertEq(frame.arguments[0], frame.callee);
    assertEq(Object.getPrototypeOf(frame.arguments[0]), Debugger.Object.prototype);
    assertEq(frame.arguments[0] instanceof Debugger.Object, true);
    assertEq(frame.arguments[0] !== frame.arguments[1], true);
    assertEq(Object.getPrototypeOf(frame.arguments[1]), Debugger.Object.prototype);
    assertEq(frame.arguments[1] instanceof Debugger.Object, true);
    hits++;
};

g.eval("var obj = {}; function f(a, b) { debugger; } f(f, obj);");
assertEq(hits, 1);