From 85aad5f3a6b4611617a5afce9a542a2384078c2e Mon Sep 17 00:00:00 2001 From: h2oche Date: Fri, 9 Apr 2021 17:19:34 +0900 Subject: [PATCH] Editorial: Explictly define 'internalSlotsList' in OrdinaryCreateFromConstructor --- spec.html | 1 + 1 file changed, 1 insertion(+) diff --git a/spec.html b/spec.html index 6c6932c0d1b..0e7d1d4ed55 100644 --- a/spec.html +++ b/spec.html @@ -10569,6 +10569,7 @@

OrdinaryCreateFromConstructor ( _constructor_, _intrinsicDefaultProto_ [ , _ 1. Assert: _intrinsicDefaultProto_ is a String value that is this specification's name of an intrinsic object. The corresponding object must be an intrinsic that is intended to be used as the [[Prototype]] value of an object. 1. Let _proto_ be ? GetPrototypeFromConstructor(_constructor_, _intrinsicDefaultProto_). + 1. If _internalSlotsList_ is not present, let _internalSlotsList_ be new empty List. 1. Return ! OrdinaryObjectCreate(_proto_, _internalSlotsList_).