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 var Test = function (foo) {
2 var a = [];
4 this.fillArray = function() {
5 a = [];
6 for (var i = 0; i < 10; i++)
7 a.push(0);
8 assertEq(a.length, 10);
9 }
11 foo.go(this);
12 };
14 // Import assertEq now to prevent global object shape from changing.
15 assertEq(true, true);
17 (new Test({ go: function(p) {
18 p.fill = function() {
19 p.fillArray();
20 }
21 }})).fill();
23 new Test({ go: function(p) {
24 for (var k = 0; k < 10; k++)
25 p.fillArray();
26 }});