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

Unified Diff: src/debug/debug.js

Issue 2578923002: [inspector] async stacks for Promise.then calls... (Closed)
Patch Set: avoid calling functions Created 3 years, 11 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
« no previous file with comments | « src/debug/debug.cc ('k') | src/debug/interface-types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.js
diff --git a/src/debug/debug.js b/src/debug/debug.js
index 110ce9590fe20cfd567409a5572159b7e8aaecdb..c17a20a512a655e95e788f3141a453523e8828b8 100644
--- a/src/debug/debug.js
+++ b/src/debug/debug.js
@@ -1094,21 +1094,12 @@ function PromiseDebugActionNameToString(name) {
case kPromiseResolve: return "Promise.resolve";
case kPromiseReject: return "Promise.reject";
case kPromiseResolveThenableJob: return "PromiseResolveThenableJob";
- }
-}
-
-function PromiseDebugActionTypeToString(type) {
- switch (type) {
- case kEnqueue: return "enqueue";
- case kEnqueueRecurring: return "enqueueRecurring";
- case kCancel: return "cancel";
- case kWillHandle: return "willHandle";
- case kDidHandle: return "didHandle";
+ case kDebugPromiseCollected: return "Promise collected";
}
}
function MakeAsyncTaskEvent(type, id, name) {
- return new AsyncTaskEvent(PromiseDebugActionTypeToString(type),
+ return new AsyncTaskEvent(type,
id, PromiseDebugActionNameToString(name));
}
« no previous file with comments | « src/debug/debug.cc ('k') | src/debug/interface-types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698