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

Unified Diff: src/isolate.h

Issue 2286753002: Synchronous path changes
Patch Set: Created 4 years, 4 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/heap-symbols.h ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index eb1841d4d834532fa224ee82a07a56a7aac310a6..c2492245abde3fc6b572ece61939bd519b00cb7e 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -673,6 +673,7 @@ class Isolate {
void PushPromise(Handle<JSObject> promise);
void PopPromise();
Handle<Object> GetPromiseOnStackOnThrow();
+ bool PromiseHasUserDefinedRejectHandler(Handle<JSObject> promise);
class ExceptionScope {
public:
@@ -750,7 +751,8 @@ class Isolate {
NOT_CAUGHT,
CAUGHT_BY_JAVASCRIPT,
CAUGHT_BY_EXTERNAL,
- CAUGHT_BY_DESUGARING
+ CAUGHT_BY_DESUGARING,
+ CAUGHT_BY_ASYNC_AWAIT
};
CatchType PredictExceptionCatcher();
« no previous file with comments | « src/heap-symbols.h ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698