summaryrefslogtreecommitdiff
path: root/lib/repl.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/repl.js')
-rw-r--r--lib/repl.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/repl.js b/lib/repl.js
index 9351675215..41aaf126e3 100644
--- a/lib/repl.js
+++ b/lib/repl.js
@@ -225,13 +225,13 @@ function REPLServer(prompt,
deprecate(() => this.input,
'repl.inputStream and repl.outputStream is deprecated. ' +
'Use repl.input and repl.output instead',
- 'DEP0XXX') :
+ 'DEP0141') :
() => this.input,
set: pendingDeprecation ?
deprecate((val) => this.input = val,
'repl.inputStream and repl.outputStream is deprecated. ' +
'Use repl.input and repl.output instead',
- 'DEP0XXX') :
+ 'DEP0141') :
(val) => this.input = val,
enumerable: false,
configurable: true
@@ -241,13 +241,13 @@ function REPLServer(prompt,
deprecate(() => this.output,
'repl.inputStream and repl.outputStream is deprecated. ' +
'Use repl.input and repl.output instead',
- 'DEP0XXX') :
+ 'DEP0141') :
() => this.output,
set: pendingDeprecation ?
deprecate((val) => this.output = val,
'repl.inputStream and repl.outputStream is deprecated. ' +
'Use repl.input and repl.output instead',
- 'DEP0XXX') :
+ 'DEP0141') :
(val) => this.output = val,
enumerable: false,
configurable: true
@@ -1614,12 +1614,12 @@ ObjectDefineProperty(module.exports, '_builtinLibs', {
get: pendingDeprecation ? deprecate(
() => _builtinLibs,
'repl._builtinLibs is deprecated. Check module.builtinModules instead',
- 'DEP0XX1'
+ 'DEP0142'
) : () => _builtinLibs,
set: pendingDeprecation ? deprecate(
(val) => _builtinLibs = val,
'repl._builtinLibs is deprecated. Check module.builtinModules instead',
- 'DEP0XX1'
+ 'DEP0142'
) : (val) => _builtinLibs = val,
enumerable: false,
configurable: true