Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit cf375a5

Browse files
committed
processRegisterQueue -> processRegisterContext
1 parent 109a008 commit cf375a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/system-register-loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ SystemRegisterLoader.prototype.instantiate = function(key, metadata) {
4545
if (isNode)
4646
nodeFetch(key, undefined, function(source) {
4747
eval(source);
48-
loader.processRegisterQueue(key);
48+
loader.processRegisterContext(key);
4949
resolve();
5050
}, reject);
5151
else if (isBrowser)
5252
scriptLoad(key, function() {
53-
loader.processRegisterQueue(key);
53+
loader.processRegisterContext(key);
5454
resolve();
5555
}, reject);
5656
else

0 commit comments

Comments
 (0)