summaryrefslogtreecommitdiff
path: root/lib/internal/process
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2019-04-25 03:03:48 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2019-04-28 15:36:28 +0800
commit757f3f8b2cf9854292caaa143a1b0a7fbac5e0ea (patch)
tree09c9a3a888fc9477d91e75cd9972cd9e6d0cdfd3 /lib/internal/process
parentc5817abff5033da7c09302256a331e64473422a8 (diff)
downloadandroid-node-v8-757f3f8b2cf9854292caaa143a1b0a7fbac5e0ea.tar.gz
android-node-v8-757f3f8b2cf9854292caaa143a1b0a7fbac5e0ea.tar.bz2
android-node-v8-757f3f8b2cf9854292caaa143a1b0a7fbac5e0ea.zip
process: reduce the number of internal frames in async stack trace
Previously, we call the JS land `runNextTicks` implementation immediately from JS land after evaluating the main module or the input, so these synchronous JS call frames would show up in the stack trace of the async errors, which can be confusing. This patch moves those calls into C++ so that more of these internal scheduler implementation details can be hidden and the users can see a cleaner a cleaner async JS stack trace. PR-URL: https://github.com/nodejs/node/pull/27392 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'lib/internal/process')
-rw-r--r--lib/internal/process/execution.js4
-rw-r--r--lib/internal/process/task_queues.js1
2 files changed, 1 insertions, 4 deletions
diff --git a/lib/internal/process/execution.js b/lib/internal/process/execution.js
index 93855ddbfc..c95567c506 100644
--- a/lib/internal/process/execution.js
+++ b/lib/internal/process/execution.js
@@ -48,8 +48,6 @@ function evalModule(source, printResult) {
print(kStderr, e);
process.exit(1);
});
- // Handle any nextTicks added in the first tick of the program.
- process._tickCallback();
}
function evalScript(name, body, breakFirstLine, printResult) {
@@ -81,8 +79,6 @@ function evalScript(name, body, breakFirstLine, printResult) {
const { kStdout, print } = require('internal/util/print');
print(kStdout, result);
}
- // Handle any nextTicks added in the first tick of the program.
- process._tickCallback();
}
const exceptionHandlerState = { captureFn: null };
diff --git a/lib/internal/process/task_queues.js b/lib/internal/process/task_queues.js
index 12e34b7ff7..309e27e6ec 100644
--- a/lib/internal/process/task_queues.js
+++ b/lib/internal/process/task_queues.js
@@ -49,6 +49,7 @@ function setHasTickScheduled(value) {
const queue = new FixedQueue();
+// Should be in sync with RunNextTicksNative in node_task_queue.cc
function runNextTicks() {
if (!hasTickScheduled() && !hasRejectionToWarn())
runMicrotasks();