Thu, 15 Jan 2015 21:03:48 +0100
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);