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:
authorcjihrig <cjihrig@gmail.com>2018-08-23 17:20:12 +0300
committercjihrig <cjihrig@gmail.com>2018-08-29 19:28:51 +0300
commitdf073cdda4d9f3afb5ae7a5dd0bd153537b66181 (patch)
tree81e9886842ec2cd1aab4218d01c1d43c393864a6 /src/tty_wrap.cc
parent1abbe0a2123e8333922894258389c2d5c1568472 (diff)
tty: make process.binding('tty_wrap') internal
PR-URL: https://github.com/nodejs/node/pull/22477 Refs: https://github.com/nodejs/node/issues/22160 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'src/tty_wrap.cc')
-rw-r--r--src/tty_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index 39d7ca1474f..f1cfa300f8f 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -173,4 +173,4 @@ TTYWrap::TTYWrap(Environment* env,
} // namespace node
-NODE_BUILTIN_MODULE_CONTEXT_AWARE(tty_wrap, node::TTYWrap::Initialize)
+NODE_MODULE_CONTEXT_AWARE_INTERNAL(tty_wrap, node::TTYWrap::Initialize)