diff --git a/shadowrealm-biblio.json b/shadowrealm-biblio.json new file mode 100644 index 0000000..077744c --- /dev/null +++ b/shadowrealm-biblio.json @@ -0,0 +1 @@ +{"location":"https://tc39.es/proposal-shadowrealm/","entries":[{"type":"op","aoid":"CopyNameAndLength","refId":"sec-copynameandlength","kind":"abstract operation","signature":{"parameters":[{"name":"_F_","type":{"kind":"opaque","type":"a function object"}},{"name":"_Target_","type":{"kind":"opaque","type":"a function object"}}],"optionalParameters":[{"name":"_prefix_","type":{"kind":"opaque","type":"a String"}},{"name":"_argCount_","type":{"kind":"opaque","type":"a Number"}}],"return":{"kind":"completion","completionType":"mixed","typeOfValueIfNormal":{"kind":"unused"}}},"effects":[]},{"type":"clause","id":"sec-copynameandlength","aoid":"CopyNameAndLength","title":"CopyNameAndLength ( F, Target [ , prefix [ , argCount ] ] )","titleHTML":"CopyNameAndLength ( F, Target [ , prefix [ , argCount ] ] )","number":"3.1.2"}]} \ No newline at end of file diff --git a/spec.html b/spec.html index 6191ef1..4453ecd 100644 --- a/spec.html +++ b/spec.html @@ -6,6 +6,7 @@ stage: 1 contributors: Chengzhong Wu, Justin Ridgewell +

ECMAScript Data Types and Values

@@ -1001,13 +1002,14 @@

AsyncContext.Snapshot.wrap ( _fn_ )

1. Let _result_ be Completion(Call(_fn_, _thisArgument_, _args_)). 1. AsyncContextSwap(_previousContextMapping_). 1. Return _result_. - 1. Let _length_ be ? LengthOfArrayLike(_fn_). - 1. Let _name_ be ? Get(_fn_, *"name"*). - 1. If _name_ is not a String, set _name_ to the empty String. - 1. Let _realm_ be the current Realm Record. - 1. Let _prototype_ be _realm_.[[Intrinsics]].[[%Function.prototype%]]. - 1. Return CreateBuiltinFunction(_closure_, _length_, _name_, « », _realm_, _prototype_, *"wrapped"*). + 1. Let _wrapped_ be CreateBuiltinFunction(_closure_, *+0*𝔽, *""*, « »). + 1. Perform ? CopyNameAndLength(_wrapped_, _fn_, *"wrapped"*). + 1. Return _wrapped_. + + + This algorithm uses the CopyNameAndLength AO defined in the ShadowRealm proposal. Since that AO does not depend on the rest of the ShadowRealm proposal, its definition (along with the changes to Function.prototype.bind) could be moved to this proposal if it were to advance stages beyond ShadowRealm. +