summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-ctor-01.js
blob: 72a5409bb047bf15f7a61884c6ac35f6d2557672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load(libdir + 'asserts.js');

// Debugger rejects arguments that aren't cross-compartment wrappers.
assertThrowsInstanceOf(function () { Debugger(null); }, TypeError);
assertThrowsInstanceOf(function () { Debugger(true); }, TypeError);
assertThrowsInstanceOf(function () { Debugger(42); }, TypeError);
assertThrowsInstanceOf(function () { Debugger("bad"); }, TypeError);
assertThrowsInstanceOf(function () { Debugger(function () {}); }, TypeError);
assertThrowsInstanceOf(function () { Debugger(this); }, TypeError);
assertThrowsInstanceOf(function () { new Debugger(null); }, TypeError);
assertThrowsInstanceOf(function () { new Debugger(true); }, TypeError);
assertThrowsInstanceOf(function () { new Debugger(42); }, TypeError);
assertThrowsInstanceOf(function () { new Debugger("bad"); }, TypeError);
assertThrowsInstanceOf(function () { new Debugger(function () {}); }, TypeError);
assertThrowsInstanceOf(function () { new Debugger(this); }, TypeError);

// From the main compartment, creating a Debugger on a sandbox compartment.
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
assertEq(dbg instanceof Debugger, true);
assertEq(Object.getPrototypeOf(dbg), Debugger.prototype);