You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This field is initially set to ~sync~, and remains ~sync~ for fully synchronous modules. For modules that are either themselves asynchronous or have an asynchronous dependency, it is set to an integer that determines the order in which execution of pending modules is queued by <emu-xref href="#sec-async-module-execution-fulfilled"></emu-xref>. Once the pending module is executed, the field is set to ~done~.
26760
+
This field is initially set to ~unset~, and remains ~unset~ for fully synchronous modules. For modules that are either themselves asynchronous or have an asynchronous dependency, it is set to an integer that determines the order in which execution of pending modules is queued by <emu-xref href="#sec-async-module-execution-fulfilled"></emu-xref>. Once the pending module is executed, the field is set to ~done~.
26761
26761
</td>
26762
26762
</tr>
26763
26763
<tr>
@@ -27088,7 +27088,7 @@ <h1>Evaluate ( ): a Promise</h1>
27088
27088
1. If _result_ is an abrupt completion, then
27089
27089
1. For each Cyclic Module Record _m_ of _stack_, do
27090
27090
1. Assert: _m_.[[Status]] is ~evaluating~.
27091
-
1. Assert: _m_.[[AsyncEvaluationOrder]] is ~sync~.
27091
+
1. Assert: _m_.[[AsyncEvaluationOrder]] is ~unset~.
27092
27092
1. Set _m_.[[Status]] to ~evaluated~.
27093
27093
1. Set _m_.[[EvaluationError]] to _result_.
27094
27094
1. Assert: _module_.[[Status]] is ~evaluated~.
@@ -27099,7 +27099,7 @@ <h1>Evaluate ( ): a Promise</h1>
27099
27099
1. Assert: _module_.[[EvaluationError]] is ~empty~.
27100
27100
1. If _module_.[[Status]] is ~evaluated~, then
27101
27101
1. NOTE: This implies that evaluation of _module_ completed synchronously.
27102
-
1. Assert: _module_.[[AsyncEvaluationOrder]] is ~sync~.
27102
+
1. Assert: _module_.[[AsyncEvaluationOrder]] is ~unset~.
0 commit comments