js/src/jit-test/tests/debug/dispatch-01.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 // Test removing hooks during dispatch.
     3 var g = newGlobal();
     4 var log = '';
     6 function addDebug(n) {
     7     for (var i = 0; i < n; i++) {
     8         var dbg = new Debugger(g);
     9         dbg.num = i;
    10         dbg.onDebuggerStatement = function (stack) {
    11             log += this.num + ', ';
    12             this.enabled = false;
    13             this.onDebuggerStatement = undefined;
    14             gc();
    15         };
    16     }
    17     dbg = null;
    18 }
    20 addDebug(10);
    21 g.eval("debugger;");
    22 assertEq(log, '0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ');

mercurial