Skip to content

Commit 12234a0

Browse files
committed
module: move the CJS exports cache to internal/modules/cjs/loader
This puts it together with the cjsParseCache and reduces the circular dependency on the singleton loader, which is the only place where this cache is stored. Drive-by: remove always-false module status check because there's no longer a local module variable after #34605 which is now invalid leftover code at this point and only doesn't throw because we happen to have a top-level variable called module.
1 parent 429ec83 commit 12234a0

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

lib/internal/modules/cjs/loader.js

+12-8
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,19 @@ const {
6565

6666
// Map used to store CJS parsing data.
6767
const cjsParseCache = new SafeWeakMap();
68+
/**
69+
* Map of already-loaded CJS modules to use.
70+
*/
71+
const cjsExportsCache = new SafeWeakMap();
6872

6973
// Set first due to cycle with ESM loader functions.
7074
module.exports = {
71-
wrapSafe, Module, cjsParseCache,
72-
get hasLoadedAnyUserCJSModule() { return hasLoadedAnyUserCJSModule; },
75+
cjsExportsCache,
76+
cjsParseCache,
7377
initializeCJS,
78+
Module,
79+
wrapSafe,
80+
get hasLoadedAnyUserCJSModule() { return hasLoadedAnyUserCJSModule; },
7481
};
7582

7683
const { BuiltinModule } = require('internal/bootstrap/realm');
@@ -1206,14 +1213,11 @@ Module.prototype.load = function(filename) {
12061213
Module._extensions[extension](this, filename);
12071214
this.loaded = true;
12081215

1209-
const cascadedLoader = getCascadedLoader();
12101216
// Create module entry at load time to snapshot exports correctly
12111217
const exports = this.exports;
1212-
// Preemptively cache
1213-
if ((module?.module === undefined ||
1214-
module.module.getStatus() < kEvaluated) &&
1215-
!cascadedLoader.cjsCache.has(this)) {
1216-
cascadedLoader.cjsCache.set(this, exports);
1218+
// Preemptively cache for ESM loader.
1219+
if (!cjsExportsCache.has(this)) {
1220+
cjsExportsCache.set(this, exports);
12171221
}
12181222
};
12191223

lib/internal/modules/esm/loader.js

-5
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,6 @@ class ModuleLoader {
8686
*/
8787
#defaultConditions = getDefaultConditions();
8888

89-
/**
90-
* Map of already-loaded CJS modules to use
91-
*/
92-
cjsCache = new SafeWeakMap();
93-
9489
/**
9590
* The index for assigning unique URLs to anonymous module evaluation
9691
*/

lib/internal/modules/esm/translators.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const {
4242
const {
4343
Module: CJSModule,
4444
cjsParseCache,
45+
cjsExportsCache,
4546
} = require('internal/modules/cjs/loader');
4647
const { fileURLToPath, pathToFileURL, URL } = require('internal/url');
4748
let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {
@@ -308,9 +309,9 @@ function createCJSModuleWrap(url, source, isMain, loadCJS = loadCJSModule) {
308309
}
309310

310311
let exports;
311-
if (asyncESM.esmLoader.cjsCache.has(module)) {
312-
exports = asyncESM.esmLoader.cjsCache.get(module);
313-
asyncESM.esmLoader.cjsCache.delete(module);
312+
if (cjsExportsCache.has(module)) {
313+
exports = cjsExportsCache.get(module);
314+
cjsExportsCache.delete(module);
314315
} else {
315316
({ exports } = module);
316317
}

lib/internal/modules/helpers.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const {
77
ObjectPrototypeHasOwnProperty,
88
SafeMap,
99
SafeSet,
10+
SafeWeakMap,
1011
StringPrototypeCharCodeAt,
1112
StringPrototypeIncludes,
1213
StringPrototypeSlice,

0 commit comments

Comments
 (0)