Skip to content

Commit

Permalink
Calling an ECMAScript function object
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdyck committed Aug 9, 2023
1 parent c655bc5 commit ab8a1c1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -13201,7 +13201,7 @@ <h1>
<emu-clause id="sec-prepareforordinarycall" type="abstract operation">
<h1>
PrepareForOrdinaryCall (
_F_: a function object,
_F_: an ECMAScript function object,
_newTarget_: an Object or *undefined*,
): an execution context
</h1>
Expand All @@ -13228,7 +13228,7 @@ <h1>
<emu-clause id="sec-ordinarycallbindthis" type="abstract operation">
<h1>
OrdinaryCallBindThis (
_F_: a function object,
_F_: an ECMAScript function object,
_calleeContext_: an execution context,
_thisArgument_: an ECMAScript language value,
): ~unused~
Expand Down Expand Up @@ -13260,7 +13260,7 @@ <h1>
<emu-clause id="sec-runtime-semantics-evaluatebody" type="sdo">
<h1>
Runtime Semantics: EvaluateBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): either a normal completion containing an ECMAScript language value or an abrupt completion
</h1>
Expand Down Expand Up @@ -13325,7 +13325,7 @@ <h1>
<emu-clause id="sec-ordinarycallevaluatebody" type="abstract operation">
<h1>
OrdinaryCallEvaluateBody (
_F_: a function object,
_F_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): either a normal completion containing an ECMAScript language value or an abrupt completion
</h1>
Expand Down Expand Up @@ -13585,7 +13585,7 @@ <h1>
<emu-clause id="sec-functiondeclarationinstantiation" type="abstract operation">
<h1>
FunctionDeclarationInstantiation (
_func_: a function object,
_func_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): either a normal completion containing ~unused~ or an abrupt completion
</h1>
Expand Down Expand Up @@ -23238,7 +23238,7 @@ <h1>Static Semantics: FunctionBodyContainsUseStrict ( ): a Boolean</h1>
<emu-clause id="sec-runtime-semantics-evaluatefunctionbody" oldids="sec-function-definitions-runtime-semantics-evaluatebody" type="sdo">
<h1>
Runtime Semantics: EvaluateFunctionBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): either a normal completion containing an ECMAScript language value or an abrupt completion
</h1>
Expand Down Expand Up @@ -23421,7 +23421,7 @@ <h1>Static Semantics: ConciseBodyContainsUseStrict ( ): a Boolean</h1>
<emu-clause id="sec-runtime-semantics-evaluateconcisebody" oldids="sec-arrow-function-definitions-runtime-semantics-evaluatebody" type="sdo">
<h1>
Runtime Semantics: EvaluateConciseBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): either a normal completion containing an ECMAScript language value or an abrupt completion
</h1>
Expand Down Expand Up @@ -23779,7 +23779,7 @@ <h1>Static Semantics: Early Errors</h1>
<emu-clause id="sec-runtime-semantics-evaluategeneratorbody" oldids="sec-generator-function-definitions-runtime-semantics-evaluatebody" type="sdo">
<h1>
Runtime Semantics: EvaluateGeneratorBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): a throw completion or a return completion
</h1>
Expand Down Expand Up @@ -24004,7 +24004,7 @@ <h1>Static Semantics: Early Errors</h1>
<emu-clause id="sec-runtime-semantics-evaluateasyncgeneratorbody" oldids="sec-asyncgenerator-definitions-evaluatebody" type="sdo">
<h1>
Runtime Semantics: EvaluateAsyncGeneratorBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): a throw completion or a return completion
</h1>
Expand Down Expand Up @@ -24626,7 +24626,7 @@ <h1>
<emu-clause id="sec-runtime-semantics-evaluateclassstaticblockbody" type="sdo">
<h1>
Runtime Semantics: EvaluateClassStaticBlockBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
): either a normal completion containing an ECMAScript language value or an abrupt completion
</h1>
<dl class="header">
Expand Down Expand Up @@ -25017,7 +25017,7 @@ <h1>
<emu-clause id="sec-runtime-semantics-evaluateasyncfunctionbody" oldids="sec-async-function-definitions-EvaluateBody" type="sdo">
<h1>
Runtime Semantics: EvaluateAsyncFunctionBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): a return completion
</h1>
Expand Down Expand Up @@ -25124,7 +25124,7 @@ <h1>Static Semantics: AsyncConciseBodyContainsUseStrict ( ): a Boolean</h1>
<emu-clause id="sec-runtime-semantics-evaluateasyncconcisebody" oldids="sec-async-arrow-function-definitions-EvaluateBody" type="sdo">
<h1>
Runtime Semantics: EvaluateAsyncConciseBody (
_functionObject_: a function object,
_functionObject_: an ECMAScript function object,
_argumentsList_: a List of ECMAScript language values,
): a return completion
</h1>
Expand Down

0 comments on commit ab8a1c1

Please sign in to comment.