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
Copy file name to clipboardExpand all lines: spec.html
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -27038,7 +27038,7 @@ <h1>
27038
27038
ModuleGraphDFS(
27039
27039
_root_: a Cyclic Module Record,
27040
27040
_initialStatus_: ~unlinked~ or ~linked~,
27041
-
_pendingSatus_: ~linking~ or ~evaluating~,
27041
+
_pendingStatus_: ~linking~ or ~evaluating~,
27042
27042
_action_: an Abstract Closure,
27043
27043
_completeSCC_: an Abstract Closure,
27044
27044
_postErrorCleanup_: an Abstract Closure,
@@ -27049,7 +27049,7 @@ <h1>
27049
27049
<dd>It synchronously traverses the module graph starting from _root_, in depth-first order, handling strongly connected components and subgraphs that have already been handled by previous ModuleGraphDFS calls.</dd>
27050
27050
</dl>
27051
27051
27052
-
<p>_initialStatus_ and _pendingSatus_ are the possible values of Cyclic Module Records' [[Status]] field to mark them respectively as yet to be handled by this graph traversal, or currently being handled. If a module has a different [[Status]] value it is assumed to have already been handled by a previous ModuleGraphDFS call.</p>
27052
+
<p>_initialStatus_ and _pendingStatus_ are the possible values of Cyclic Module Records' [[Status]] field to mark them respectively as yet to be handled by this graph traversal, or currently being handled. If a module has a different [[Status]] value it is assumed to have already been handled by a previous ModuleGraphDFS call.</p>
27053
27053
27054
27054
<p>The _action_, _completeSCC_ and _postErrorCleanup_ are called on individual modules at different points during the graph traversal:</p>
27055
27055
@@ -27065,15 +27065,15 @@ <h1>
27065
27065
27066
27066
<emu-alg>
27067
27067
1. Let _stack_ be a new empty List.
27068
-
1. Let _result_ be Completion(InnerModuleGraphDFS(_root_, _stack_, 0, _initialStatus_, _pendingSatus_, _action_, _completeSCC_)).
27068
+
1. Let _result_ be Completion(InnerModuleGraphDFS(_root_, _stack_, 0, _initialStatus_, _pendingStatus_, _action_, _completeSCC_)).
27069
27069
1. If _result_ is an abrupt completion, then
27070
27070
1. For each Cyclic Module Record _module_ of _stack_, do
27071
-
1. Assert: _module_.[[Status]] is _pendingSatus_.
27071
+
1. Assert: _module_.[[Status]] is _pendingStatus_.
0 commit comments