Skip to content

Commit

Permalink
Review by jmdyck
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Feb 14, 2025
1 parent ee61cc9 commit 2d6d20f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -28474,7 +28474,7 @@ <h1>Synthetic Module Records</h1>
<emu-clause id="sec-create-default-export-synthetic-module" type="abstract operation">
<h1>
CreateDefaultExportSyntheticModule (
_defaultExport_: an ECMAScript Language value,
_defaultExport_: an ECMAScript language value,
): a Synthetic Module Record
</h1>
<dl class="header">
Expand Down Expand Up @@ -28529,7 +28529,7 @@ <h1>
</emu-clause>

<emu-clause id="sec-smr-module-record-methods">
<h1>Implementation of Module Record abstract methods</h1>
<h1>Implementation of Module Record Abstract Methods</h1>

<p>The following are the concrete methods for Synthetic Module Record that implement the corresponding Module Record abstract methods defined in <emu-xref href="#table-abstract-methods-of-module-records"></emu-xref>.</p>

Expand Down Expand Up @@ -28589,7 +28589,7 @@ <h1>Link ( ): ~unused~</h1>
1. Let _realm_ be _module_.[[Realm]].
1. Let _env_ be NewModuleEnvironment(_realm_.[[GlobalEnv]]).
1. Set _module_.[[Environment]] to _env_.
1. For each String _exportName_ in _module_.[[ExportNames]], do
1. For each String _exportName_ of _module_.[[ExportNames]], do
1. Perform ! _env_.CreateMutableBinding(_exportName_, *false*).
1. Perform ! _env_.InitializeBinding(_exportName_, *undefined*).
1. Return ~unused~.
Expand All @@ -28610,8 +28610,8 @@ <h1>Evaluate ( ): a Promise</h1>
1. Set the ScriptOrModule of _moduleContext_ to _module_.
1. Set the VariableEnvironment of _moduleContext_ to _module_.[[Environment]].
1. Set the LexicalEnvironment of _moduleContext_ to _module_.[[Environment]].
1. Suspend the currently running execution context.
1. Push _moduleContext_ on to the execution context stack; _moduleContext_ is now the running execution context.
1. Suspend the running execution context.
1. Push _moduleContext_ onto the execution context stack; _moduleContext_ is now the running execution context.
1. Let _steps_ be _module_.[[EvaluationSteps]].
1. Let _result_ be Completion(_steps_(_module_)).
1. Suspend _moduleContext_ and remove it from the execution context stack.
Expand Down

0 comments on commit 2d6d20f

Please sign in to comment.