js/src/jit-test/tests/auto-regress/bug700295.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 // Binary: cache/js-dbg-64-1210706b4576-linux
     2 // Flags:
     3 //
     5 this.__proto__ = null;
     6 Object.prototype.__proto__ = this;
     7 function exploreProperties(obj) {
     8   var props = [];
     9   for (var o = obj; o; o = Object.getPrototypeOf(o)) {
    10     props = props.concat(Object.getOwnPropertyNames(o));
    11   }
    12   for (var i = 0; i < props.length; ++i) {
    13     var p = props[i];
    14     var v = obj[p];
    15   }
    16 }
    17 var c = [{}];
    18 exploreProperties(c);

mercurial