js/src/jit-test/tests/debug/Debugger-debuggees-09.js

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 // |jit-test| debug
     2 // If hasDebuggee(x) is false, removeDebuggee(x) does nothing.
     4 var dbg = new Debugger;
     6 function check(obj) {
     7     // If obj is something we could never debug, hasDebuggee(obj) is false.
     8     assertEq(dbg.hasDebuggee(obj), false);
    10     // If hasDebuggee(x) is false, removeDebuggee(x) does nothing.
    11     assertEq(dbg.removeDebuggee(obj), undefined);
    12 }
    14 // global objects which happen not to be debuggees at the moment
    15 var g1 = newGlobal('same-compartment');
    16 check(g1);
    18 // objects in a compartment that is already debugging us
    19 var g2 = newGlobal();
    20 g2.parent = this;
    21 g2.eval("var dbg = new Debugger(parent);");
    22 check(g2);

mercurial