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.)
michael@0 | 1 | var g = newGlobal(); |
michael@0 | 2 | |
michael@0 | 3 | var array = g.eval("new Array(1,2,3)"); |
michael@0 | 4 | assertEq([array,array].concat().toString(), "1,2,3,1,2,3"); |
michael@0 | 5 | assertEq(Array.isArray(array), true); |
michael@0 | 6 | |
michael@0 | 7 | var number = g.eval("new Number(42)"); |
michael@0 | 8 | var bool = g.eval("new Boolean(false)"); |
michael@0 | 9 | var string = g.eval("new String('ponies')"); |
michael@0 | 10 | assertEq(JSON.stringify({n:number, b:bool, s:string}), "{\"n\":42,\"b\":false,\"s\":\"ponies\"}"); |
michael@0 | 11 | assertEq(JSON.stringify({arr:array}), "{\"arr\":[1,2,3]}"); |
michael@0 | 12 | assertEq(JSON.stringify({2:'ponies', unicorns:'not real'}, array), "{\"2\":\"ponies\"}"); |
michael@0 | 13 | assertEq(JSON.stringify({42:true, ponies:true, unicorns:'sad'}, [number, string]), "{\"42\":true,\"ponies\":true}"); |
michael@0 | 14 | assertEq(JSON.stringify({a:true,b:false}, undefined, number), "{\n \"a\": true,\n \"b\": false\n}"); |
michael@0 | 15 | assertEq(JSON.stringify({a:true,b:false}, undefined, string), "{\nponies\"a\": true,\nponies\"b\": false\n}"); |