michael@0: var g = newGlobal(); michael@0: michael@0: var array = g.eval("new Array(1,2,3)"); michael@0: assertEq([array,array].concat().toString(), "1,2,3,1,2,3"); michael@0: assertEq(Array.isArray(array), true); michael@0: michael@0: var number = g.eval("new Number(42)"); michael@0: var bool = g.eval("new Boolean(false)"); michael@0: var string = g.eval("new String('ponies')"); michael@0: assertEq(JSON.stringify({n:number, b:bool, s:string}), "{\"n\":42,\"b\":false,\"s\":\"ponies\"}"); michael@0: assertEq(JSON.stringify({arr:array}), "{\"arr\":[1,2,3]}"); michael@0: assertEq(JSON.stringify({2:'ponies', unicorns:'not real'}, array), "{\"2\":\"ponies\"}"); michael@0: assertEq(JSON.stringify({42:true, ponies:true, unicorns:'sad'}, [number, string]), "{\"42\":true,\"ponies\":true}"); michael@0: assertEq(JSON.stringify({a:true,b:false}, undefined, number), "{\n \"a\": true,\n \"b\": false\n}"); michael@0: assertEq(JSON.stringify({a:true,b:false}, undefined, string), "{\nponies\"a\": true,\nponies\"b\": false\n}");