(loader, load)
| 232 | } |
| 233 | |
| 234 | function 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) |
| 245 | var nullContext = Object.freeze(Object.create(null)); |
no test coverage detected
searching dependent graphs…