Eliminate false positives: BigInt64Array, BigUint64Array

This commit is contained in:
Rick Waldron 2018-11-30 11:37:28 -05:00
parent 6e836cea56
commit 86deb370e7
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ info: |
are specific to TypedArray instance objects.
features: [BigInt]
---*/
assert.sameValue(typeof BigInt64Array, 'function');
assert.throws(TypeError, function () {
BigInt64Array.prototype.buffer;
});

View File

@ -12,7 +12,7 @@ info: |
are specific to TypedArray instance objects.
features: [BigInt]
---*/
assert.sameValue(typeof BigUint64Array, 'function');
assert.throws(TypeError, function () {
BigUint64Array.prototype.buffer;
});