Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 // Check superficial features of Array.build.
3 if (getBuildConfiguration().parallelJS) {
4 load(libdir + "asserts.js");
6 var desc = Object.getOwnPropertyDescriptor(Array, "build");
7 assertEq(desc.configurable, true);
8 assertEq(desc.enumerable, false);
9 assertEq(desc.writable, true);
10 assertEq(Array.build.length, 2);
11 assertThrowsInstanceOf(() => new Array.build(), TypeError); // not a constructor
13 // Must pass a function to second argument.
14 for (let v of [undefined, null, false, "cow"])
15 assertThrowsInstanceOf(() => Array.build(1, v), TypeError);
17 // The first argument must be a legal length.
18 assertThrowsInstanceOf(() => Array.build(-1, function() {}), RangeError);
20 // When the this-value passed in is not a constructor, the result is an array.
21 for (let v of [undefined, null, false, "cow"])
22 assertEq(Array.isArray(Array.build.call(v, 1, function() {})), true);
23 }