mirror of https://github.com/tc39/test262.git
Eliminate false positives: BigInt64Array, BigUint64Array
This commit is contained in:
parent
6e836cea56
commit
86deb370e7
|
@ -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;
|
||||
});
|
||||
|
|
|
@ -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;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue