js/src/jit-test/tests/debug/Environment-gc-02.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 // A closure's .environment keeps the lexical environment alive even if the closure is destroyed.
     3 var N = 4;
     4 var g = newGlobal();
     5 g.eval("function add(a) { return function (b) { return eval('a + b'); }; }");
     6 var dbg = new Debugger;
     7 var gw = dbg.addDebuggee(g);
     8 var aw = gw.getOwnPropertyDescriptor("add").value;
    10 // Create N closures and collect environments.
    11 var arr = [];
    12 for (var i = 0; i < N; i++)
    13     arr[i] = aw.call(null, i).return.environment;
    15 // Test that they work now.
    16 function check() {
    17     for (var i = 0; i < N; i++) {
    18         assertEq(arr[i].find("b"), null);
    19         assertEq(arr[i].find("a"), arr[i]);
    20     }
    21 }
    22 check();
    24 // Test that they work after gc.
    25 gc();
    26 gc({});
    27 g.gc(g);
    28 check();

mercurial