blob: c4f5e9b69312f2abf838ab06f19b774541fef171 [file] [log] [blame]
const constructors = [
Int8Array,
Uint8Array,
Uint8ClampedArray,
Int16Array,
Uint16Array,
Int32Array,
Uint32Array,
Float32Array,
Float64Array ];
if (typeof SharedArrayBuffer != "undefined")
constructors.push(sharedConstructor(Int8Array),
sharedConstructor(Uint8Array),
sharedConstructor(Int16Array),
sharedConstructor(Uint16Array),
sharedConstructor(Int32Array),
sharedConstructor(Uint32Array),
sharedConstructor(Float32Array),
sharedConstructor(Float64Array));
for (var constructor of constructors) {
assertThrowsInstanceOf(() => constructor(), TypeError);
assertThrowsInstanceOf(() => constructor(1), TypeError);
assertThrowsInstanceOf(() => constructor.call(null), TypeError);
assertThrowsInstanceOf(() => constructor.apply(null, []), TypeError);
assertThrowsInstanceOf(() => Reflect.apply(constructor, null, []), TypeError);
}
if (typeof reportCompare === "function")
reportCompare(true, true);