mirror of https://github.com/tc39/test262.git
49 lines
1.2 KiB
JavaScript
Executable File
49 lines
1.2 KiB
JavaScript
Executable File
// Copyright (C) 2015 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Array containing every typed array constructor.
|
|
*/
|
|
var typedArrayConstructors = [
|
|
Float64Array,
|
|
Float32Array,
|
|
Int32Array,
|
|
Int16Array,
|
|
Int8Array,
|
|
Uint32Array,
|
|
Uint16Array,
|
|
Uint8Array,
|
|
Uint8ClampedArray
|
|
];
|
|
|
|
/**
|
|
* The %TypedArray% intrinsic constructor function.
|
|
*/
|
|
var TypedArray = Object.getPrototypeOf(Int8Array);
|
|
|
|
/**
|
|
* Callback for testing a typed array constructor.
|
|
*
|
|
* @callback typedArrayConstructorCallback
|
|
* @param {Function} Constructor the constructor object to test with.
|
|
*/
|
|
|
|
/**
|
|
* Calls the provided function for every typed array constructor.
|
|
*
|
|
* @param {typedArrayConstructorCallback} f - the function to call for each typed array constructor.
|
|
* @param {Array} selected - An optional Array with filtered typed arrays
|
|
*/
|
|
function testWithTypedArrayConstructors(f, selected) {
|
|
var constructors = selected || typedArrayConstructors;
|
|
for (var i = 0; i < constructors.length; ++i) {
|
|
var constructor = constructors[i];
|
|
try {
|
|
f(constructor);
|
|
} catch (e) {
|
|
e.message += " (Testing with " + constructor.name + ".)";
|
|
throw e;
|
|
}
|
|
}
|
|
}
|