whatwg/loader

GetRegistryEntry defines name 'result' twice

jonco3 opened this issue · 3 comments

https://whatwg.github.io/loader/#registry-GetRegistryEntry

Let result be the result of transforming currentStage.[[Result]] with a new pass-through promise.
Let stage be currentStage.[[Stage]].
Let result be CreateObject().

Result is defined twice here which makes subsequent use ambiguous.

this is not longer the case after the refactor from PR #96

fixed by PR #97, we no longer have GetRegistryEntry.

Great, thanks.