mirror of https://github.com/tc39/test262.git
Add missing test for SharedArrayBuffer.prototype
This commit is contained in:
parent
7c2af2265c
commit
4cb032dc32
|
@ -0,0 +1,16 @@
|
|||
// Copyright (C) 2021 Leo Balter. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-sharedarraybuffer.prototype
|
||||
description: Property descriptor of the 'prototype' property
|
||||
info: |
|
||||
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
|
||||
false, [[Configurable]]: false }.
|
||||
includes: [propertyHelper.js]
|
||||
---*/
|
||||
|
||||
verifyProperty(SharedArrayBuffer, 'prototype', {
|
||||
enumerable: false,
|
||||
writable: false,
|
||||
configurable: false
|
||||
});
|
Loading…
Reference in New Issue