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
1. Let _entry0_ be EnsureRegistered(_loader_, _key_).
325
-
1. If _entry0_.[[State]] is "ready", return a new promise fulfilled with _entry_.[[Module]].
324
+
1. Let _entry_ be EnsureRegistered(_loader_, _key_).
325
+
1. If _entry_.[[State]] is "ready", return a new promise fulfilled with _entry_.[[Module]].
326
326
1. Return the result of transforming RequestInstantiate(_loader_, _key_) with a fulfillment handler that, when called with argument _entry_, runs the following steps:
327
327
1. Let _depLoads_ be a new empty List.
328
328
1. For each _pair_ in _entry_.[[Dependencies]], do:
329
329
1. Let _p_ be the result of transforming Resolve(_loader_, _pair_.[[key]], _key_) with a fulfillment handler that, when called with value _depKey_, runs the following steps:
330
+
1. Let _depEntry_ be EnsureRegistered(_loader_, _depKey_).
331
+
1. If _depEntry_.[[State]] is "ready", then:
332
+
1. Let _dep_ be _depEntry_.[[Module]].
333
+
1. Set _pair_.[[value]] to _dep_.
334
+
1. Return _dep_.
330
335
1. Return the result of transforming RequestInstantiate(_loader_, _depKey_) with a fulfillment handler that, when called with value _dep_, runs the following steps:
331
336
1. Set _pair_.[[value]] to _dep_.
332
337
1. Return _dep_.
@@ -501,7 +506,7 @@ The modules spec should only invoke this operation from methods of Normal Module
0 commit comments