summaryrefslogtreecommitdiff
path: root/src/node_internals.h
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2018-06-11 17:37:09 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2018-06-17 22:34:58 +0800
commit1d8a23173311337d93c365cba3357ac6f87eb39c (patch)
treea9518b91613f80cc5b7db530a66dea3d4578d619 /src/node_internals.h
parent54ee8cb5dd28e9e72770ee4ab6aa73d700232cb5 (diff)
downloadandroid-node-v8-1d8a23173311337d93c365cba3357ac6f87eb39c.tar.gz
android-node-v8-1d8a23173311337d93c365cba3357ac6f87eb39c.tar.bz2
android-node-v8-1d8a23173311337d93c365cba3357ac6f87eb39c.zip
process: implement process.hrtime.bigint()
PR-URL: https://github.com/nodejs/node/pull/21256 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Diffstat (limited to 'src/node_internals.h')
-rw-r--r--src/node_internals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_internals.h b/src/node_internals.h
index 9468770dbe..025fa10100 100644
--- a/src/node_internals.h
+++ b/src/node_internals.h
@@ -905,6 +905,7 @@ void Chdir(const v8::FunctionCallbackInfo<v8::Value>& args);
void CPUUsage(const v8::FunctionCallbackInfo<v8::Value>& args);
void Cwd(const v8::FunctionCallbackInfo<v8::Value>& args);
void Hrtime(const v8::FunctionCallbackInfo<v8::Value>& args);
+void HrtimeBigInt(const v8::FunctionCallbackInfo<v8::Value>& args);
void Kill(const v8::FunctionCallbackInfo<v8::Value>& args);
void MemoryUsage(const v8::FunctionCallbackInfo<v8::Value>& args);
void RawDebug(const v8::FunctionCallbackInfo<v8::Value>& args);