Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | // Map(arr) throws if arr contains holes (or undefined values). |
michael@0 | 2 | |
michael@0 | 3 | load(libdir + "asserts.js"); |
michael@0 | 4 | assertThrowsInstanceOf(function () { Map([undefined]); }, TypeError); |
michael@0 | 5 | assertThrowsInstanceOf(function () { Map([null]); }, TypeError); |
michael@0 | 6 | assertThrowsInstanceOf(function () { Map([[0, 0], [1, 1], , [3, 3]]); }, TypeError); |
michael@0 | 7 | assertThrowsInstanceOf(function () { Map([[0, 0], [1, 1], ,]); }, TypeError); |
michael@0 | 8 | |
michael@0 | 9 | // Map(iterable) throws if iterable doesn't have array-like objects |
michael@0 | 10 | |
michael@0 | 11 | assertThrowsInstanceOf(function () { Map([1, 2, 3]); }, TypeError); |
michael@0 | 12 | assertThrowsInstanceOf(function () { |
michael@0 | 13 | let s = new Set([1, 2, "abc"]); |
michael@0 | 14 | new Map(s); |
michael@0 | 15 | }, TypeError); |