summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/collections/Map-constructor-4.js
blob: 22c2c416be4b27ec5cbcc28055f516874e4d078b (plain)
1
2
3
4
5
6
// new Map(x) throws if x is not iterable (unless x is undefined).

load(libdir + "asserts.js");
var nonIterables = [true, 1, -0, 3.14, NaN, {}, Math, this];
for (let k of nonIterables)
    assertThrowsInstanceOf(function () { new Map(k); }, TypeError);