@@ -225,13 +225,13 @@ function REPLServer(prompt,
225
225
deprecate ( ( ) => this . input ,
226
226
'repl.inputStream and repl.outputStream is deprecated. ' +
227
227
'Use repl.input and repl.output instead' ,
228
- 'DEP0XXX ' ) :
228
+ 'DEP0141 ' ) :
229
229
( ) => this . input ,
230
230
set : pendingDeprecation ?
231
231
deprecate ( ( val ) => this . input = val ,
232
232
'repl.inputStream and repl.outputStream is deprecated. ' +
233
233
'Use repl.input and repl.output instead' ,
234
- 'DEP0XXX ' ) :
234
+ 'DEP0141 ' ) :
235
235
( val ) => this . input = val ,
236
236
enumerable : false ,
237
237
configurable : true
@@ -241,13 +241,13 @@ function REPLServer(prompt,
241
241
deprecate ( ( ) => this . output ,
242
242
'repl.inputStream and repl.outputStream is deprecated. ' +
243
243
'Use repl.input and repl.output instead' ,
244
- 'DEP0XXX ' ) :
244
+ 'DEP0141 ' ) :
245
245
( ) => this . output ,
246
246
set : pendingDeprecation ?
247
247
deprecate ( ( val ) => this . output = val ,
248
248
'repl.inputStream and repl.outputStream is deprecated. ' +
249
249
'Use repl.input and repl.output instead' ,
250
- 'DEP0XXX ' ) :
250
+ 'DEP0141 ' ) :
251
251
( val ) => this . output = val ,
252
252
enumerable : false ,
253
253
configurable : true
@@ -1614,12 +1614,12 @@ ObjectDefineProperty(module.exports, '_builtinLibs', {
1614
1614
get : pendingDeprecation ? deprecate (
1615
1615
( ) => _builtinLibs ,
1616
1616
'repl._builtinLibs is deprecated. Check module.builtinModules instead' ,
1617
- 'DEP0XX1 '
1617
+ 'DEP0142 '
1618
1618
) : ( ) => _builtinLibs ,
1619
1619
set : pendingDeprecation ? deprecate (
1620
1620
( val ) => _builtinLibs = val ,
1621
1621
'repl._builtinLibs is deprecated. Check module.builtinModules instead' ,
1622
- 'DEP0XX1 '
1622
+ 'DEP0142 '
1623
1623
) : ( val ) => _builtinLibs = val ,
1624
1624
enumerable : false ,
1625
1625
configurable : true
0 commit comments