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

Unified Diff: src/objects.h

Issue 2723273002: [inspector] introduced Debugger.scheduleStepIntoAsync (Closed)
Patch Set: override current scheduled step into async if presented Created 3 years, 10 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 8eff8bbccb6eec62f53efb102bfb7c6e70df4b4e..9a20b637a78b64a00476ce54a1af148b1648eaf5 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -7165,6 +7165,10 @@ class SharedFunctionInfo: public HeapObject {
// Indicates that |debug_is_blackboxed| has been computed and set.
DECL_BOOLEAN_ACCESSORS(computed_debug_is_blackboxed)
+ // Indicates that the function is Promise.all, Promise.race, Promise.resolve
+ // or Promise.reject.
+ DECL_BOOLEAN_ACCESSORS(is_promise_builtin)
+
// The function's name if it is non-empty, otherwise the inferred name.
String* DebugName();
@@ -7562,6 +7566,7 @@ class SharedFunctionInfo: public HeapObject {
kComputedHasNoSideEffect,
kDebugIsBlackboxed,
kComputedDebugIsBlackboxed,
+ kIsPromiseBuiltin,
};
// kFunctionKind has to be byte-aligned

Powered by Google App Engine
This is Rietveld 408576698