js/src/jit-test/tests/debug/Object-class.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 // Basic tests for Debugger.Object.prototype.class.
     2 var g = newGlobal();
     3 var dbg = new Debugger(g);
     4 var hits = 0;
     5 g.eval('function f() { debugger; }');
     7 dbg.onDebuggerStatement = function (frame) {
     8     var arr = frame.arguments;
     9     assertEq(arr[0].class, "Object");
    10     assertEq(arr[1].class, "Array");
    11     assertEq(arr[2].class, "Function");
    12     assertEq(arr[3].class, "Date");
    13     assertEq(arr[4].class, "Object");
    14     assertEq(arr[5].class, "Function");
    15     assertEq(arr[6].class, "Date");
    16     hits++;
    17 };
    18 g.f(Object.prototype, [], eval, new Date,
    19     Proxy.create({}), Proxy.createFunction({}, eval), new Proxy(new Date, {}));
    20 assertEq(hits, 1);
    22 // Debugger.Object.prototype.class should see through cross-compartment
    23 // wrappers.
    24 g.eval('f(Object.prototype, [], eval, new Date,\
    25           Proxy.create({}), Proxy.createFunction({}, f), new Proxy(new Date, {}));');
    26 assertEq(hits, 2);

mercurial