MCPcopy Create free account
hub / github.com/systemjs/systemjs / topLevelLoad

Function topLevelLoad

src/system-core.js:234–242  ·  view source on GitHub ↗
(loader, load)

Source from the content-addressed store, hash-verified

232}
233
234function topLevelLoad (loader, load) {
235 return load.C = instantiateAll(loader, load, load, {})
236 .then(function () {
237 return postOrderExec(loader, load, {});
238 })
239 .then(function () {
240 return load.n;
241 });
242}
243
244// the closest we can get to call(undefined)
245var nullContext = Object.freeze(Object.create(null));

Callers 1

system-core.jsFile · 0.85

Calls 2

instantiateAllFunction · 0.85
postOrderExecFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…