summaryrefslogtreecommitdiff
path: root/src/node_internals.h
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2018-09-07 16:19:03 -0700
committerMichaƫl Zasso <targos@protonmail.com>2018-09-20 07:41:47 +0200
commit7e4f29f20171fae025fb0eb2432103405e83d421 (patch)
treeed86afa58de68da2190c188a952e7ddf41e49ecc /src/node_internals.h
parent1d3a63f0795b0304e74324e26e307c9e65df0dfb (diff)
downloadnode-new-7e4f29f20171fae025fb0eb2432103405e83d421.tar.gz
src: move DebugPortGetter/Setter to node_process.cc
PR-URL: https://github.com/nodejs/node/pull/22758 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'src/node_internals.h')
-rw-r--r--src/node_internals.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/node_internals.h b/src/node_internals.h
index 4c5dc88a0e..2f2473f285 100644
--- a/src/node_internals.h
+++ b/src/node_internals.h
@@ -910,6 +910,11 @@ void EnvSetter(v8::Local<v8::Name> property,
void EnvQuery(v8::Local<v8::Name> property,
const v8::PropertyCallbackInfo<v8::Integer>& info);
void EnvEnumerator(const v8::PropertyCallbackInfo<v8::Array>& info);
+void DebugPortGetter(v8::Local<v8::Name> property,
+ const v8::PropertyCallbackInfo<v8::Value>& info);
+void DebugPortSetter(v8::Local<v8::Name> property,
+ v8::Local<v8::Value> value,
+ const v8::PropertyCallbackInfo<void>& info);
void GetParentProcessId(v8::Local<v8::Name> property,
const v8::PropertyCallbackInfo<v8::Value>& info);