// |reftest| skip-if(!this.hasOwnProperty('SharedArrayBuffer')) -- SharedArrayBuffer is not enabled unconditionally // Copyright (C) 2015 André Bargull. All rights reserved. // Copyright (C) 2017 Mozilla Corporation. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- description: > Throws a TypeError if new object is not an SharedArrayBuffer instance. info: | SharedArrayBuffer.prototype.slice ( start, end ) features: [SharedArrayBuffer, Symbol.species] ---*/ var speciesConstructor = {}; speciesConstructor[Symbol.species] = function(length) { return {}; }; var arrayBuffer = new SharedArrayBuffer(8); arrayBuffer.constructor = speciesConstructor; assert.throws(TypeError, function() { arrayBuffer.slice(); }); reportCompare(0, 0);