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

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