mirror of
https://github.com/tc39/test262.git
synced 2025-11-03 05:03:58 +01:00
19 lines
563 B
JavaScript
19 lines
563 B
JavaScript
// Copyright (C) 2018 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-atomics.or
|
|
description: >
|
|
Test Atomics.or on non-shared integer TypedArrays
|
|
includes: [testBigIntTypedArray.js]
|
|
features: [ArrayBuffer, arrow-function, Atomics, BigInt, TypedArray]
|
|
---*/
|
|
|
|
var buffer = new ArrayBuffer(16);
|
|
|
|
testWithBigIntTypedArrayConstructors(function(TA) {
|
|
assert.throws(TypeError, function() {
|
|
Atomics.or(new TA(buffer), 0, 0);
|
|
}, 'Atomics.or(new TA(buffer), 0, 0) throws TypeError');
|
|
});
|