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
@@ -27061,7 +27061,7 @@ <h1>
27061
27061
ModuleGraphDFS(
27062
27062
_root_: a Cyclic Module Record,
27063
27063
_initialStatus_: ~unlinked~ or ~linked~,
27064
-
_pendingSatus_: ~linking~ or ~evaluating~,
27064
+
_pendingStatus_: ~linking~ or ~evaluating~,
27065
27065
_action_: an Abstract Closure,
27066
27066
_completeSCC_: an Abstract Closure,
27067
27067
_postErrorCleanup_: an Abstract Closure,
@@ -27072,7 +27072,7 @@ <h1>
27072
27072
<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>
27073
27073
</dl>
27074
27074
27075
-
<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>
27075
+
<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>
27076
27076
27077
27077
<p>The _action_, _completeSCC_ and _postErrorCleanup_ are called on individual modules at different points during the graph traversal:</p>
27078
27078
@@ -27088,15 +27088,15 @@ <h1>
27088
27088
27089
27089
<emu-alg>
27090
27090
1. Let _stack_ be a new empty List.
27091
-
1. Let _result_ be Completion(InnerModuleGraphDFS(_root_, _stack_, 0, _initialStatus_, _pendingSatus_, _action_, _completeSCC_)).
27091
+
1. Let _result_ be Completion(InnerModuleGraphDFS(_root_, _stack_, 0, _initialStatus_, _pendingStatus_, _action_, _completeSCC_)).
27092
27092
1. If _result_ is an abrupt completion, then
27093
27093
1. For each Cyclic Module Record _module_ of _stack_, do
27094
-
1. Assert: _module_.[[Status]] is _pendingSatus_.
27094
+
1. Assert: _module_.[[Status]] is _pendingStatus_.
0 commit comments