summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/TypedArray/from_surfaces.js
blob: ef15536378404ba53ffb1446d2493bacf482b793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
for (var constructor of anyTypedArrayConstructors) {
    // Check superficial features of %TypeArray%.from.
    var desc = Object.getOwnPropertyDescriptor(constructor.__proto__, "from");
    assertEq(desc.configurable, true);
    assertEq(desc.enumerable, false);
    assertEq(desc.writable, true);
    assertEq(constructor.from.length, 1);
    assertThrowsInstanceOf(() => new constructor.from(), TypeError);  // not a constructor
}

if (typeof reportCompare === "function")
    reportCompare(true, true);