summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-13.js
blob: 1ebd0b6069d0d715a6507778f75f90b9c83042fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// onNewGlobalObject handlers receive the correct Debugger.Object instances.

var dbg = new Debugger;

var gw = null;
dbg.onNewGlobalObject = function (global) {
  assertEq(arguments.length, 1);
  assertEq(this, dbg);
  gw = global;
};
var g = newGlobal();
assertEq(typeof gw, 'object');
assertEq(dbg.addDebuggee(g), gw);

// The Debugger.Objects passed to onNewGlobalObject are the global as
// viewed from its own compartment.
assertEq(gw.makeDebuggeeValue(g), gw);