summaryrefslogtreecommitdiff
path: root/src/env.h
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2018-12-19 18:44:14 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2018-12-24 07:57:15 +0800
commit457603e96194b4858ad715f9faacb3ad7fec7f35 (patch)
treec9d496b06366721b7453b38c176b1cdbaa39fbe9 /src/env.h
parente830e2742cedceb7fc89de4910b2c1a9536a1638 (diff)
downloadandroid-node-v8-457603e96194b4858ad715f9faacb3ad7fec7f35.tar.gz
android-node-v8-457603e96194b4858ad715f9faacb3ad7fec7f35.tar.bz2
android-node-v8-457603e96194b4858ad715f9faacb3ad7fec7f35.zip
src: move process.nextTick and promise setup into node_task_queue.cc
This patch: - Moves the process.nextTick and promise setup C++ code into node_task_queue.cc which is exposed as `internalBinding('task_queue')` - Makes `lib/internal/process/promises.js` and `lib/internal/process/next_tick.js` as side-effect-free as possible - Removes the bootstrapper object being passed into `bootstrap/node.js`, let `next_tick.js` and `promises.js` load whatever they need from `internalBinding('task_queue')` instead. - Rename `process._tickCallback` to `runNextTicks` internally for clarity but still expose it as `process._tickCallback`. PR-URL: https://github.com/nodejs/node/pull/25163 Refs: https://github.com/nodejs/node/issues/24961 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Diffstat (limited to 'src/env.h')
-rw-r--r--src/env.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/env.h b/src/env.h
index 934c160197..c999b258c5 100644
--- a/src/env.h
+++ b/src/env.h
@@ -358,7 +358,7 @@ constexpr size_t kFsStatsBufferLength = kFsStatsFieldsNumber * 2;
V(performance_entry_template, v8::Function) \
V(pipe_constructor_template, v8::FunctionTemplate) \
V(process_object, v8::Object) \
- V(promise_handler_function, v8::Function) \
+ V(promise_reject_callback, v8::Function) \
V(promise_wrap_template, v8::ObjectTemplate) \
V(sab_lifetimepartner_constructor_template, v8::FunctionTemplate) \
V(script_context_constructor_template, v8::FunctionTemplate) \
@@ -373,7 +373,7 @@ constexpr size_t kFsStatsBufferLength = kFsStatsFieldsNumber * 2;
V(tty_constructor_template, v8::FunctionTemplate) \
V(udp_constructor_function, v8::Function) \
V(url_constructor_function, v8::Function) \
- V(write_wrap_template, v8::ObjectTemplate) \
+ V(write_wrap_template, v8::ObjectTemplate)
class Environment;