MCPcopy Index your code
hub / github.com/rollup/rollup / extendLoadModulesPromise

Method extendLoadModulesPromise

src/ModuleLoader.ts:352–361  ·  view source on GitHub ↗
(loadNewModulesPromise: Promise<T>)

Source from the content-addressed store, hash-verified

350 }
351
352 private extendLoadModulesPromise<T>(loadNewModulesPromise: Promise<T>): Promise<T> {
353 this.latestLoadModulesPromise = Promise.all([
354 loadNewModulesPromise,
355 this.latestLoadModulesPromise
356 ]);
357 this.latestLoadModulesPromise.catch(() => {
358 /* Avoid unhandled Promise rejections */
359 });
360 return loadNewModulesPromise;
361 }
362
363 private async fetchDynamicDependencies(
364 module: Module,

Callers 3

addAdditionalModulesMethod · 0.95
addEntryModulesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected