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 try {
2 function testSlowArrayPopMultiFrame() {
3 a = undefined;
4 function parent(a, i) { i };
5 function gramps(a, i) {
6 return parent;
7 }
8 var last;
9 for (var i = 0; ; gramps++) {
10 last = gramps(a, i)
11 }
12 }(testSlowArrayPopMultiFrame(), 23);
13 assertEq(0, 1);
14 } catch(e) {
15 assertEq(e instanceof TypeError, true);
16 }