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

Unified Diff: src/objects.h

Issue 2655253004: [inspector] introduced stepIntoAsync for chained callbacks (Closed)
Patch Set: addressed Yang's comment 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 5fc6d61016197f8c89251400c2c62d7d5abb2051..eba8804be1bf95cd6babea145d90059a620fb2e2 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -7292,6 +7292,8 @@ class SharedFunctionInfo: public HeapObject {
// Indicates that |debug_is_blackboxed| has been computed and set.
DECL_BOOLEAN_ACCESSORS(computed_debug_is_blackboxed)
+ DECL_BOOLEAN_ACCESSORS(is_promise_all_or_race);
+
// The function's name if it is non-empty, otherwise the inferred name.
String* DebugName();
@@ -7688,6 +7690,7 @@ class SharedFunctionInfo: public HeapObject {
kComputedHasNoSideEffect,
kDebugIsBlackboxed,
kComputedDebugIsBlackboxed,
+ kIsPromiseAllOrRace,
};
// kFunctionKind has to be byte-aligned
« src/inspector/v8-debugger.cc ('K') | « src/js/promise.js ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698