Skip to content

Commit

Permalink
fix(JWK review): some wrong variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Sep 20, 2022
1 parent 36635e0 commit 407474b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -19426,7 +19426,7 @@ <h1>Runtime Semantics: Evaluation</h1>
1. Let _specifierString_ be Completion(ToString(_specifier_)).
1. IfAbruptRejectPromise(_specifierString_, _promiseCapability_).
1. Let _state_ be a new ModuleLoadState Record { [[Action]]: ~dynamic-import~, [[PromiseCapability]]: _promiseCapability_ }.
1. Perform HostLoadImportedModule(_referrer_, _specifier_, *undefined*, _state_).
1. Perform HostLoadImportedModule(_referrer_, _specifierString_, *undefined*, _state_).
1. Return _promiseCapability_.[[Promise]].
</emu-alg>

Expand Down Expand Up @@ -26565,7 +26565,7 @@ <h1>
1. If _module_.[[LoadedModules]] contains a Record _record_ such that _record_.[[Specifier]] is _required_, then
1. Perform ContinueModuleLoading(_state_, NormalCompletion(_record_.[[Module]])).
1. Else,
1. Perform HostLoadImportedModule(_referrer_, _specifier_, _state_.[[HostDefined]], _state_).
1. Perform HostLoadImportedModule(_module_, _required_, _state_.[[HostDefined]], _state_).
1. NOTE: HostLoadImportedModule will call ContinueModuleLoading.
1. Assert: _state_.[[PendingModules]] &ge; 1.
1. Set _state_.[[PendingModules]] to _state_.[[PendingModules]] - 1.
Expand Down Expand Up @@ -28120,7 +28120,7 @@ <h1>
FinishLoadImportedModule (
_referrer_: a Script Record, a Cyclic Module Record, or a Realm Record,
_specifier_: a String,
_payload_: a ModuleLoadState Record,
_state_: a ModuleLoadState Record,
_result_: either a normal completion containing a Module Record or a throw completion,
): ~unused~
</h1>
Expand Down

0 comments on commit 407474b

Please sign in to comment.