Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Nagy <ronagy@icloud.com>2020-04-10 18:17:20 +0300
committerRobert Nagy <ronagy@icloud.com>2020-04-15 22:25:42 +0300
commit0bd559550929967e760a646ef835da832a3b4cc7 (patch)
tree89548fd8ef797367a22fef4a5c49b73d806d19bb /lib/internal/errors.js
parentf22a9cac36f731d5bdbf1b7c542b36fa4c13f4de (diff)
stream: simplify Transform stream implementation
Significantly simplified Transform stream implementation by using mostly standard stream code. PR-URL: https://github.com/nodejs/node/pull/32763 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'lib/internal/errors.js')
-rw-r--r--lib/internal/errors.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/internal/errors.js b/lib/internal/errors.js
index e0668e2f827..4c583981725 100644
--- a/lib/internal/errors.js
+++ b/lib/internal/errors.js
@@ -1363,12 +1363,8 @@ E('ERR_TLS_SNI_FROM_SERVER',
E('ERR_TRACE_EVENTS_CATEGORY_REQUIRED',
'At least one category is required', TypeError);
E('ERR_TRACE_EVENTS_UNAVAILABLE', 'Trace events are unavailable', Error);
-E('ERR_TRANSFORM_ALREADY_TRANSFORMING',
- 'Calling transform done when still transforming', Error);
// This should probably be a `RangeError`.
-E('ERR_TRANSFORM_WITH_LENGTH_0',
- 'Calling transform done when writableState.length != 0', Error);
E('ERR_TTY_INIT_FAILED', 'TTY initialization failed', SystemError);
E('ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET',
'`process.setupUncaughtExceptionCapture()` was called while a capture ' +