summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-add-Debugger-prototype.js
blob: ba98347a7a82e44dcc799ddbfa413977fba9da27 (plain)
1
2
3
4
5
6
load(libdir + "asserts.js");

assertThrowsInstanceOf(function () {
    var dbg = new Debugger();
    dbg.addDebuggee(Debugger.Object.prototype);
}, TypeError);