Skip to content

Commit 32ab8cf

Browse files
committed
module: check --experimental-require-module separately from detection
Previously we assumed if `--experimental-detect-module` is true, then `--experimental-require-module` is true, which isn't the case, as the two can be enabled/disabled separately. This patch fixes the checks so `--no-experimental-require-module` is still effective when `--experimental-detect-module` is enabled. Drive-by: make the assertion messages more informative and remove obsolete TODO about allowing TLA in entrypoints handled by require(esm).
1 parent 371ed85 commit 32ab8cf

File tree

3 files changed

+34
-5
lines changed

3 files changed

+34
-5
lines changed

lib/internal/modules/cjs/loader.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@ function loadESMFromCJS(mod, filename) {
14461446
* @param {'commonjs'|undefined} format Intended format of the module.
14471447
*/
14481448
function wrapSafe(filename, content, cjsModuleInstance, format) {
1449-
assert(format !== 'module'); // ESM should be handled in loadESMFromCJS().
1449+
assert(format !== 'module', 'ESM should be handled in loadESMFromCJS()');
14501450
const hostDefinedOptionId = vm_dynamic_import_default_internal;
14511451
const importModuleDynamically = vm_dynamic_import_default_internal;
14521452
if (patched) {
@@ -1476,7 +1476,17 @@ function wrapSafe(filename, content, cjsModuleInstance, format) {
14761476
};
14771477
}
14781478

1479-
const shouldDetectModule = (format !== 'commonjs' && getOptionValue('--experimental-detect-module'));
1479+
let shouldDetectModule = false;
1480+
if (format !== 'commonjs') {
1481+
if (cjsModuleInstance && cjsModuleInstance[kIsMainSymbol]) {
1482+
// For entry points, format detection is used unless explicitly disabled.
1483+
shouldDetectModule = getOptionValue('--experimental-detect-module');
1484+
} else {
1485+
// For modules being loaded by `require()`, if require(esm) is disabled,
1486+
// don't try to reparse to detect format and just throw for ESM syntax.
1487+
shouldDetectModule = getOptionValue('--experimental-require-module');
1488+
}
1489+
}
14801490
const result = compileFunctionForCJSLoader(content, filename, false /* is_sea_main */, shouldDetectModule);
14811491

14821492
// Cache the source map for the module if present.
@@ -1506,8 +1516,6 @@ Module.prototype._compile = function(content, filename, format) {
15061516
}
15071517
}
15081518

1509-
// TODO(joyeecheung): when the module is the entry point, consider allowing TLA.
1510-
// Only modules being require()'d really need to avoid TLA.
15111519
if (format === 'module') {
15121520
// Pass the source into the .mjs extension handler indirectly through the cache.
15131521
this[kModuleSource] = content;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Flags: --no-experimental-require-module
2+
'use strict';
3+
4+
// Tests that --experimental-require-module is not implied by --experimental-detect-module
5+
// and is checked independently.
6+
require('../common');
7+
const assert = require('assert');
8+
9+
// Check that require() still throws SyntaxError for an ambiguous module that's detected to be ESM.
10+
// TODO(joyeecheung): now that --experimental-detect-module is unflagged, it makes more sense
11+
// to either throw ERR_REQUIRE_ESM for require() of detected ESM instead, or add a hint about the
12+
// use of require(esm) to the SyntaxError.
13+
14+
assert.throws(
15+
() => require('../fixtures/es-modules/loose.js'),
16+
{
17+
name: 'SyntaxError',
18+
message: /Unexpected token 'export'/
19+
});

test/fixtures/es-modules/loose.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
// This file can be run or imported only if `--experimental-default-type=module` is set.
1+
// This file can be run or imported only if `--experimental-default-type=module` is set
2+
// or `--experimental-detect-module` is not disabled. If it's loaded by
3+
// require(), then `--experimental-require-module` must not be disabled.
24
export default 'module';
35
console.log('executed');

0 commit comments

Comments
 (0)