Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: test/mjsunit/es6/debug-promises-caught-all.js

Issue 362783002: Introduce debug events for Microtask queue. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: addressed Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/es6/debug-promises-caught-all.js
diff --git a/test/mjsunit/es6/debug-promises-caught-all.js b/test/mjsunit/es6/debug-promises-caught-all.js
index c43055b2fb13820ce9d9caca1fdadc60d0f1eec7..3502762e6604327ca364d3769d85ce36eca4de00 100644
--- a/test/mjsunit/es6/debug-promises-caught-all.js
+++ b/test/mjsunit/es6/debug-promises-caught-all.js
@@ -30,6 +30,7 @@ q.catch(
});
function listener(event, exec_state, event_data, data) {
+ if (event == Debug.DebugEvent.AsyncTaskEvent) return;
try {
// Ignore exceptions during startup in stress runs.
if (step >= 1) return;
« no previous file with comments | « test/mjsunit/es6/debug-promises-async-task-event.js ('k') | test/mjsunit/es6/debug-promises-uncaught-all.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698