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
@@ -26912,7 +26912,7 @@ <h1>
26912
26912
ModuleGraphDFS(
26913
26913
_root_: a Cyclic Module Record,
26914
26914
_initialStatus_: ~unlinked~ or ~linked~,
26915
-
_pendingSatus_: ~linking~ or ~evaluating~,
26915
+
_pendingStatus_: ~linking~ or ~evaluating~,
26916
26916
_action_: an Abstract Closure,
26917
26917
_completeSCC_: an Abstract Closure,
26918
26918
_postErrorCleanup_: an Abstract Closure,
@@ -26923,7 +26923,7 @@ <h1>
26923
26923
<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>
26924
26924
</dl>
26925
26925
26926
-
<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>
26926
+
<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>
26927
26927
26928
26928
<p>The _action_, _completeSCC_ and _postErrorCleanup_ are called on individual modules at different points during the graph traversal:</p>
26929
26929
@@ -26939,15 +26939,15 @@ <h1>
26939
26939
26940
26940
<emu-alg>
26941
26941
1. Let _stack_ be a new empty List.
26942
-
1. Let _result_ be Completion(InnerModuleGraphDFS(_root_, _stack_, 0, _initialStatus_, _pendingSatus_, _action_, _completeSCC_)).
26942
+
1. Let _result_ be Completion(InnerModuleGraphDFS(_root_, _stack_, 0, _initialStatus_, _pendingStatus_, _action_, _completeSCC_)).
26943
26943
1. If _result_ is an abrupt completion, then
26944
26944
1. For each Cyclic Module Record _module_ of _stack_, do
26945
-
1. Assert: _module_.[[Status]] is _pendingSatus_.
26945
+
1. Assert: _module_.[[Status]] is _pendingStatus_.
0 commit comments