js/src/jit-test/tests/debug/makeGlobalObjectReference-02.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/jit-test/tests/debug/makeGlobalObjectReference-02.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,13 @@
     1.4 +// Debugger.prototype.makeGlobalObjectReference only accepts actual global objects.
     1.5 +
     1.6 +load(libdir + 'asserts.js');
     1.7 +
     1.8 +var dbg = new Debugger;
     1.9 +
    1.10 +assertThrowsInstanceOf(() => dbg.makeGlobalObjectReference(true), TypeError);
    1.11 +assertThrowsInstanceOf(() => dbg.makeGlobalObjectReference("foo"), TypeError);
    1.12 +assertThrowsInstanceOf(() => dbg.makeGlobalObjectReference(12), TypeError);
    1.13 +assertThrowsInstanceOf(() => dbg.makeGlobalObjectReference(undefined), TypeError);
    1.14 +assertThrowsInstanceOf(() => dbg.makeGlobalObjectReference(null), TypeError);
    1.15 +assertThrowsInstanceOf(() => dbg.makeGlobalObjectReference({ xlerb: "sbot" }), TypeError);
    1.16 +assertEq(dbg.makeGlobalObjectReference(this) instanceof Debugger.Object, true);

mercurial