Name Description Size Coverage
browser.js 0 -
BYTES_PER_ELEMENT.js --- esid: sec-typedarray.bytes_per_element description: BigUint64Array.BYTES_PER_ELEMENT property descriptor info: | 22.2.5.1 TypedArray.BYTES_PER_ELEMENT The value of TypedArray.BYTES_PER_ELEMENT is the Number value of the Element Size value specified in Table 52 for TypedArray. This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }. includes: [propertyHelper.js] features: [BigInt] --- 739 -
constructor.js --- esid: sec-typedarray-constructors description: BigUint64Array is a constructor function info: | 22.2.4 The TypedArray Constructors [...] The TypedArray intrinsic constructor functions are single functions whose behaviour is overloaded based upon the number and types of its arguments. The actual behaviour of a call of TypedArray depends upon the number and kind of arguments that are passed to it. features: [BigInt] --- 648 -
is-a-constructor.js --- esid: sec-ecmascript-standard-built-in-objects description: > The BigUint64Array constructor implements [[Construct]] info: | IsConstructor ( argument ) The abstract operation IsConstructor takes argument argument (an ECMAScript language value). It determines if argument is a function object with a [[Construct]] internal method. It performs the following steps when called: If Type(argument) is not Object, return false. If argument has a [[Construct]] internal method, return true. Return false. includes: [isConstructor.js] features: [Reflect.construct, TypedArray] --- 882 -
length.js --- esid: sec-typedarray-constructors description: BigUint64Array.length property descriptor info: | The TypedArray Constructors The length property of the TypedArray constructor function is 3. 17 ECMAScript Standard Built-in Objects ... Unless otherwise specified, the length property of a built-in function object has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. includes: [propertyHelper.js] features: [BigInt, TypedArray] --- 765 -
name.js --- esid: sec-properties-of-the-typedarray-constructors description: BigUint64Array.name property descriptor info: | 22.2.5 Properties of the TypedArray Constructors [...] Each TypedArray constructor has a name property whose value is the String value of the constructor name specified for it in Table 52. 17 ECMAScript Standard Built-in Objects Every built-in function object, including constructors, that is not identified as an anonymous function has a name property whose value is a String. Unless otherwise specified, this value is the name that is given to the function in this specification. For functions that are specified as properties of objects, the name value is the property name string used to access the function. [...] Unless otherwise specified, the name property of a built-in function object, if it exists, has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. includes: [propertyHelper.js] features: [BigInt] --- 1292 -
prop-desc.js --- esid: sec-typedarray-objects description: BigUint64Array property descriptor info: | 17 ECMAScript Standard Built-in Objects includes: [propertyHelper.js] features: [BigInt] --- 444 -
proto.js --- esid: sec-properties-of-the-typedarray-constructors description: BigUint64Array prototype internal slot info: | 22.2.5 Properties of the TypedArray Constructors The value of the [[Prototype]] internal slot of each TypedArray constructor is the %TypedArray% intrinsic object. includes: [testTypedArray.js] features: [BigInt, TypedArray] --- 575 -
prototype -
prototype.js --- esid: sec-typedarray.prototype description: BigUint64Array.prototype property descriptor info: | 22.2.5.2 TypedArray.prototype The initial value of TypedArray.prototype is the corresponding TypedArray prototype intrinsic object (22.2.6). This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }. includes: [propertyHelper.js] features: [BigInt] --- 734 -
shell.js --- description: | Test if a given function is a constructor function. defines: [isConstructor] features: [Reflect.construct] --- 15544 -