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:
authorJames M Snell <jasnell@gmail.com>2018-08-16 03:14:22 +0300
committerJames M Snell <jasnell@gmail.com>2018-08-19 22:46:10 +0300
commit884b23daf723db60ebe939e6dde492fa5f9230eb (patch)
treefeb159647324b4fd00024d72ea464cd4cbe161ab /src/stream_wrap.cc
parent7108893ec8fb3b3ee8538c82640fa61ac7014e38 (diff)
stream: move process.binding('stream_wrap') to internalBinding
PR-URL: https://github.com/nodejs/node/pull/22345 Refs: https://github.com/nodejs/node/issues/22160 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'src/stream_wrap.cc')
-rw-r--r--src/stream_wrap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stream_wrap.cc b/src/stream_wrap.cc
index 60a17545427..59f7eb9503f 100644
--- a/src/stream_wrap.cc
+++ b/src/stream_wrap.cc
@@ -374,5 +374,5 @@ void LibuvStreamWrap::AfterUvWrite(uv_write_t* req, int status) {
} // namespace node
-NODE_BUILTIN_MODULE_CONTEXT_AWARE(stream_wrap,
- node::LibuvStreamWrap::Initialize)
+NODE_MODULE_CONTEXT_AWARE_INTERNAL(stream_wrap,
+ node::LibuvStreamWrap::Initialize)