From cbb2a41d7e5ace5c13216de13c3ac464ec9b6054 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Sat, 15 Feb 2025 17:53:24 +0100 Subject: [PATCH] Review by jmdyck --- spec.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spec.html b/spec.html index 83ea101b2f..638764ae41 100644 --- a/spec.html +++ b/spec.html @@ -28666,6 +28666,7 @@

1. Let _realm_ be the current Realm Record. 1. Let _setDefaultExport_ be a new Abstract Closure with parameters (_module_) that captures _defaultExport_ and performs the following steps when called: 1. Perform SetSyntheticModuleExport(_module_, *"default"*, _defaultExport_). + 1. Return NormalCompletion(~unused~). 1. Return the Synthetic Module Record { [[Realm]]: _realm_, [[Environment]]: ~empty~, [[Namespace]]: ~empty~, [[HostDefined]]: *undefined*, [[ExportNames]]: « *"default"* », [[EvaluationSteps]]: _setDefaultExport_ }. @@ -28760,7 +28761,7 @@

-

Link ( ): ~unused~

+

Link ( ): a normal completion containing ~unused~

for
a Synthetic Module Record _module_
@@ -28773,7 +28774,7 @@

Link ( ): ~unused~

1. For each String _exportName_ of _module_.[[ExportNames]], do 1. Perform ! _env_.CreateMutableBinding(_exportName_, *false*). 1. Perform ! _env_.InitializeBinding(_exportName_, *undefined*). - 1. Return ~unused~. + 1. Return NormalCompletion(~unused~).