diff options
author | Shelley Vohr <shelley.vohr@gmail.com> | 2020-05-17 18:45:37 -0700 |
---|---|---|
committer | Shelley Vohr <shelley.vohr@gmail.com> | 2020-05-19 11:30:54 -0700 |
commit | 5d81e4d677e8a00c2d0d3a23e2bd74bf9f1deb57 (patch) | |
tree | f51eb7c09a218a576e27484b6b41d05ccf0ee687 /lib/repl.js | |
parent | e4ad4642d75b76a5559d47fa4aa0984e5a1b9856 (diff) | |
download | node-new-14.3.0.tar.gz |
2020-05-19, Version 14.3.0 (Current)v14.3.0v14.3.0-proposal
Notable changes:
async_hooks:
* (SEMVER-MINOR) move PromiseHook handler to JS (Stephen Belanger) https://github.com/nodejs/node/pull/32891
cli:
* (SEMVER-MINOR) add `--trace-atomics-wait` flag (Anna Henningsen) https://github.com/nodejs/node/pull/33292
fs:
* (SEMVER-MINOR) add .ref() and .unref() methods to watcher classes (rickyes) https://github.com/nodejs/node/pull/33134
http:
* (SEMVER-MINOR) expose http.validate-header-name/value (osher) https://github.com/nodejs/node/pull/33119
repl:
* (SEMVER-MINOR) deprecate repl._builtinLibs (Ruben Bridgewater) https://github.com/nodejs/node/pull/33294
* (SEMVER-MINOR) deprecate repl.inputStream and repl.outputStream (Ruben Bridgewater) https://github.com/nodejs/node/pull/33294
* (SEMVER-MINOR) show reference errors during preview (Ruben Bridgewater) https://github.com/nodejs/node/pull/33282
* (SEMVER-MINOR) improve repl preview (Ruben Bridgewater) https://github.com/nodejs/node/pull/33282
src:
* add support for TLA (Gus Caplan) https://github.com/nodejs/node/pull/30370
PR-URL: TODO
Diffstat (limited to 'lib/repl.js')
-rw-r--r-- | lib/repl.js | 12 |
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 |