summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Object-identity-01.js
blob: a4c48e42056f1b65d2895290c9dfbbd1dd3925ae (plain)
1
2
3
4
5
6
7
8
9
10
// Two references to the same object get the same Debugger.Object wrapper.
var g = newGlobal();
var dbg = Debugger(g);
var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    assertEq(frame.arguments[0], frame.arguments[1]);
    hits++;
};
g.eval("var obj = {}; function f(a, b) { debugger; } f(obj, obj);");
assertEq(hits, 1);