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 function f() {
2 var x = -[NaN][0];
3 assertEq(x === x, false);
4 assertEq(x !== x, true);
5 assertEq(x == x, false);
6 assertEq(x != x, true);
8 var y = -("x" / {});
9 var z = y;
10 assertEq(y === z, false);
11 assertEq(y !== z, true);
12 assertEq(y == z, false);
13 assertEq(y != z, true);
14 }
15 f();
17 function g(x, y) {
18 var z = x / y;
19 assertEq(z === z, false);
20 }
21 g(0, 0);