Name Description Size
browser.js 0
instance-extensible.js --- esid: sec-disposablestack description: Instances of DisposableStack are extensible info: | DisposableStack( ) ... 2. Let disposableStack be ? OrdinaryCreateFromConstructor(NewTarget, "%DisposableStack.prototype%", « [[DisposableState]], [[DisposeCapability]] »). 3. Set disposableStack.[[DisposableState]] to pending. 4. Set disposableStack.[[DisposeCapability]] to NewDisposeCapability(). 5. Return disposableStack. OrdinaryCreateFromConstructor ( constructor, intrinsicDefaultProto [ , internalSlotsList ] ) ... 2. Let proto be ? GetPrototypeFromConstructor(constructor, intrinsicDefaultProto). 3. Return ObjectCreate(proto, internalSlotsList). ObjectCreate ( proto [ , internalSlotsList ] ) 4. Set obj.[[Prototype]] to proto. 5. Set obj.[[Extensible]] to true. 6. Return obj. features: [explicit-resource-management, Reflect] --- 1397
is-a-constructor.js --- esid: sec-ecmascript-standard-built-in-objects description: > The DisposableStack 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: [explicit-resource-management, Reflect.construct] --- 1183
length.js --- esid: sec-disposablestack description: DisposableStack.length property descriptor info: | DisposableStack ( ) 17 ECMAScript Standard Built-in Objects Every built-in function object, including constructors, has a length property whose value is an integer. Unless otherwise specified, this value is equal to the largest number of named arguments shown in the subclause headings for the function description. Optional parameters (which are indicated with brackets: [ ]) or rest parameters (which are shown using the form «...name») are not included in the default argument count. 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: [explicit-resource-management] --- 1413
name.js --- esid: sec-disposablestack description: DisposableStack.name property descriptor info: | DisposableStack ( ) 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: [explicit-resource-management] --- 1397
newtarget-prototype-is-not-object.js --- esid: sec-disposablestack description: > [[Prototype]] defaults to %DisposableStack.prototype% if NewTarget.prototype is not an object. info: | DisposableStack( target ) ... 2. Let disposableStack be ? OrdinaryCreateFromConstructor(NewTarget, "%DisposableStack.prototype%", « [[DisposableState]], [[DisposeCapability]] »). 3. Set disposableStack.[[DisposableState]] to pending. 4. Set disposableStack.[[DisposeCapability]] to NewDisposeCapability(). 5. Return disposableStack. OrdinaryCreateFromConstructor ( constructor, intrinsicDefaultProto [ , internalSlotsList ] ) ... 2. Let proto be ? GetPrototypeFromConstructor(constructor, intrinsicDefaultProto). 3. Return ObjectCreate(proto, internalSlotsList). GetPrototypeFromConstructor ( constructor, intrinsicDefaultProto ) 3. Let proto be ? Get(constructor, 'prototype'). 4. If Type(proto) is not Object, then a. Let realm be ? GetFunctionRealm(constructor). b. Set proto to realm's intrinsic object named intrinsicDefaultProto. 5. Return proto. features: [explicit-resource-management, Reflect.construct, Symbol] --- 2781
prop-desc.js --- esid: sec-disposablestack-constructor description: > Property descriptor of DisposableStack info: | 17 ECMAScript Standard Built-in Objects: Every other data property described in clauses 18 through 26 and in Annex B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified. includes: [propertyHelper.js] features: [explicit-resource-management] --- 970
proto-from-ctor-realm.js --- esid: sec-disposablestack description: Default [[Prototype]] value derived from realm of the newTarget info: | DisposableStack( ) ... 2. Let disposableStack be ? OrdinaryCreateFromConstructor(NewTarget, "%DisposableStack.prototype%", « [[DisposableState]], [[DisposeCapability]] »). 3. Set disposableStack.[[DisposableState]] to pending. 4. Set disposableStack.[[DisposeCapability]] to NewDisposeCapability(). 5. Return disposableStack. OrdinaryCreateFromConstructor ( constructor, intrinsicDefaultProto [ , internalSlotsList ] ) ... 2. Let proto be ? GetPrototypeFromConstructor(constructor, intrinsicDefaultProto). 3. Return ObjectCreate(proto, internalSlotsList). GetPrototypeFromConstructor ( constructor, intrinsicDefaultProto ) 3. Let proto be ? Get(constructor, 'prototype'). 4. If Type(proto) is not Object, then a. Let realm be ? GetFunctionRealm(constructor). b. Set proto to realm's intrinsic object named intrinsicDefaultProto. 5. Return proto. features: [explicit-resource-management, cross-realm, Reflect, Symbol] --- 2832
proto.js --- esid: sec-properties-of-disposablestack-constructor description: > The prototype of DisposableStack is Function.prototype info: | The value of the [[Prototype]] internal slot of the DisposableStack object is the intrinsic object %FunctionPrototype%. features: [explicit-resource-management] --- 913
prototype
shell.js --- description: | Test if a given function is a constructor function. defines: [isConstructor] features: [Reflect.construct] --- 596