mirror of https://github.com/tc39/test262.git
Add missing 'SharedArrayBuffer' feature tag
This commit is contained in:
parent
f717982c94
commit
79283bd80f
|
@ -4,6 +4,7 @@
|
||||||
/*---
|
/*---
|
||||||
esid: sec-get-arraybuffer.prototype.bytelength
|
esid: sec-get-arraybuffer.prototype.bytelength
|
||||||
description: Throws a TypeError exception when `this` is a SharedArrayBuffer
|
description: Throws a TypeError exception when `this` is a SharedArrayBuffer
|
||||||
|
features: [SharedArrayBuffer]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var getter = Object.getOwnPropertyDescriptor(
|
var getter = Object.getOwnPropertyDescriptor(
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
esid: sec-arraybuffer.prototype.slice
|
esid: sec-arraybuffer.prototype.slice
|
||||||
description: >
|
description: >
|
||||||
Throws a TypeError if `this` is a SharedArrayBuffer
|
Throws a TypeError if `this` is a SharedArrayBuffer
|
||||||
|
features: [SharedArrayBuffer]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
assert.throws(TypeError, function() {
|
assert.throws(TypeError, function() {
|
||||||
|
|
|
@ -6,7 +6,7 @@ esid: sec-integer-indexed-exotic-objects-get-p-receiver
|
||||||
description: >
|
description: >
|
||||||
Return value from valid numeric index, with SharedArrayBuffer
|
Return value from valid numeric index, with SharedArrayBuffer
|
||||||
includes: [testTypedArray.js]
|
includes: [testTypedArray.js]
|
||||||
features: [TypedArray]
|
features: [TypedArray, SharedArrayBuffer]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var proto = TypedArray.prototype;
|
var proto = TypedArray.prototype;
|
||||||
|
|
Loading…
Reference in New Issue