blob: 777a933f07d1992c355ada40d3506486645e0d94 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: >
TypedArray's [[ByteOffset]] internal slot is always a positive number, test with negative zero.
info: |
%TypedArray% ( buffer [ , byteOffset [ , length ] ] )
...
6. Let offset be ? ToInteger(byteOffset).
7. If offset < 0, throw a RangeError exception.
8. If offset is -0, let offset be +0.
...
includes: [testBigIntTypedArray.js]
features: [BigInt, SharedArrayBuffer, TypedArray]
---*/
testWithBigIntTypedArrayConstructors(function(TAConstructor) {
var typedArray = new TAConstructor(new SharedArrayBuffer(8), -0);
assert.sameValue(typedArray.byteOffset, +0);
});