// |reftest| skip-if(!this.hasOwnProperty('SharedArrayBuffer')) -- SharedArrayBuffer is not enabled unconditionally // 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] features: [SharedArrayBuffer] ---*/ verifyProperty(SharedArrayBuffer, 'prototype', { enumerable: false, writable: false, configurable: false }); reportCompare(0, 0);