Skip to content

Commit d666964

Browse files
eladkishonaduh95
authored andcommitted
repl: fix declaring a variable with the name util
The REPL no longer relies on `util` being a reference to the `util` core module. It still relies on `globalThis` refering to the global object, but no longer emits warnings when it's overwritten by the user. PR-URL: #38141 Fixes: #38139 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
1 parent b87f1be commit d666964

File tree

2 files changed

+43
-2
lines changed

2 files changed

+43
-2
lines changed

lib/internal/repl/utils.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,11 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
351351
breakLength: Infinity
352352
}, previewOptions);
353353
session.post('Runtime.callFunctionOn', {
354-
functionDeclaration: `(v) => util.inspect(v, ${inspectOptions})`,
354+
functionDeclaration:
355+
`(v) =>
356+
Reflect
357+
.getOwnPropertyDescriptor(globalThis, 'util')
358+
.get().inspect(v, ${inspectOptions})`,
355359
objectId: result.objectId,
356360
arguments: [result]
357361
}, (error, preview) => {
@@ -394,7 +398,7 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
394398
}
395399

396400
const inputPreviewCallback = (error, inspected) => {
397-
if (inspected === null) {
401+
if (inspected == null) {
398402
return;
399403
}
400404

test/parallel/test-repl-history-navigation.js

+37
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const tmpdir = require('../common/tmpdir');
1616
tmpdir.refresh();
1717

1818
process.throwDeprecation = true;
19+
process.on('warning', common.mustNotCall());
1920

2021
const defaultHistoryPath = path.join(tmpdir.path, '.node_repl_history');
2122

@@ -554,6 +555,42 @@ const tests = [
554555
expected: [],
555556
clean: false
556557
},
558+
{
559+
env: { NODE_REPL_HISTORY: defaultHistoryPath },
560+
test: ['const util = {}', ENTER,
561+
'ut', RIGHT, ENTER],
562+
expected: common.hasIntl && common.hasCrypto ? [
563+
prompt, ...'const util = {}',
564+
'undefined\n',
565+
prompt, ...'ut', ' // il', '\n// {}',
566+
'il', '\n// {}',
567+
'{}\n',
568+
prompt,
569+
] : [],
570+
clean: false
571+
},
572+
{
573+
env: { NODE_REPL_HISTORY: defaultHistoryPath },
574+
test: [
575+
'const utilDesc = Reflect.getOwnPropertyDescriptor(globalThis, "util")',
576+
ENTER,
577+
'globalThis.util = {}', ENTER,
578+
'ut', RIGHT, ENTER,
579+
'Reflect.defineProperty(globalThis, "util", utilDesc)', ENTER],
580+
expected: common.hasIntl && common.hasCrypto ? [
581+
prompt, ...'const utilDesc = ' +
582+
'Reflect.getOwnPropertyDescriptor(globalThis, "util")',
583+
'undefined\n',
584+
prompt, ...'globalThis.util = {}',
585+
'{}\n',
586+
prompt, ...'ut', ' // il', 'il',
587+
'{}\n',
588+
prompt, ...'Reflect.defineProperty(globalThis, "util", utilDesc)',
589+
'true\n',
590+
prompt,
591+
] : [],
592+
clean: false
593+
},
557594
];
558595
const numtests = tests.length;
559596

0 commit comments

Comments
 (0)