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 | load(libdir + "asserts.js"); |
michael@0 | 2 | |
michael@0 | 3 | // Throw a TypeError if Proxy is called with less than two arguments |
michael@0 | 4 | assertThrowsInstanceOf(function () { Proxy(); }, TypeError); |
michael@0 | 5 | assertThrowsInstanceOf(function () { new Proxy(); }, TypeError); |
michael@0 | 6 | assertThrowsInstanceOf(function () { Proxy({}); }, TypeError); |
michael@0 | 7 | assertThrowsInstanceOf(function () { new Proxy({}); }, TypeError); |
michael@0 | 8 | |
michael@0 | 9 | // Throw a TypeError if the first argument is not a non-null object |
michael@0 | 10 | assertThrowsInstanceOf(function () { Proxy(0, {}); }, TypeError); |
michael@0 | 11 | assertThrowsInstanceOf(function () { new Proxy(0, {}); }, TypeError); |
michael@0 | 12 | assertThrowsInstanceOf(function () { Proxy(null, {}); }, TypeError); |
michael@0 | 13 | assertThrowsInstanceOf(function () { new Proxy(null, {}); }, TypeError); |
michael@0 | 14 | |
michael@0 | 15 | // Throw a TypeError if the second argument is not a non-null object |
michael@0 | 16 | assertThrowsInstanceOf(function () { Proxy({}, 0); }, TypeError); |
michael@0 | 17 | assertThrowsInstanceOf(function () { new Proxy({}, 0); }, TypeError); |
michael@0 | 18 | assertThrowsInstanceOf(function () { Proxy({}, null); }, TypeError); |
michael@0 | 19 | assertThrowsInstanceOf(function () { new Proxy({}, null); }, TypeError); |
michael@0 | 20 | |
michael@0 | 21 | // Result of the call should be an object |
michael@0 | 22 | assertEq(typeof Proxy({}, {}), 'object'); |
michael@0 | 23 | assertEq(typeof new Proxy({}, {}), 'object'); |