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-13 01:27:01 +0300
committerJames M Snell <jasnell@gmail.com>2018-08-19 02:27:11 +0300
commit892932f9bdd875006ee248d06ba6be03bd50aeca (patch)
tree7f189656215108a20e181ae56e7ceeab65cba241 /src/node_v8.cc
parent1744205ff565b490f8db72000028b074cce23d5d (diff)
v8: move process.binding('v8') to internalBinding
PR-URL: https://github.com/nodejs/node/pull/22288 Refs: https://github.com/nodejs/node/issues/22160 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Yuta Hiroto <hello@hiroppy.me> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/node_v8.cc')
-rw-r--r--src/node_v8.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_v8.cc b/src/node_v8.cc
index fb0a9fea1e5..2a661d95497 100644
--- a/src/node_v8.cc
+++ b/src/node_v8.cc
@@ -200,4 +200,4 @@ void Initialize(Local<Object> target,
} // namespace node
-NODE_BUILTIN_MODULE_CONTEXT_AWARE(v8, node::Initialize)
+NODE_MODULE_CONTEXT_AWARE_INTERNAL(v8, node::Initialize)