// Copyright (C) 2018 Rick Waldron. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-atomics.add description: > Test Atomics.add on non-shared integer TypedArrays includes: [testBigIntTypedArray.js] features: [ArrayBuffer, arrow-function, Atomics, BigInt, TypedArray] ---*/ var ab = new ArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 2); testWithBigIntTypedArrayConstructors(function(TA) { assert.throws(TypeError, function() { Atomics.add(new TA(ab), 0, 0n); }, '`Atomics.add(new TA(ab), 0, 0n)` throws TypeError'); });