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

Unified Diff: src/isolate.h

Issue 1108013003: Introduce --zap-cpp-pointers (off by default) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixes Created 3 years, 7 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/spaces.cc ('k') | src/objects.h » ('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 b2d21e4e62e5d38b8428cc5b0d643fef2666f746..752b97e04227c63d68498a30551cb2011f4d28c8 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -614,6 +614,11 @@ class Isolate {
v8::TryCatch* try_catch_handler() {
return thread_local_top_.try_catch_handler();
}
+#if DEBUG
+ static v8::TryCatch* next_try_catch(v8::TryCatch* try_catch) {
+ return try_catch->next_;
+ }
+#endif
bool* external_caught_exception_address() {
return &thread_local_top_.external_caught_exception_;
}
« no previous file with comments | « src/heap/spaces.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698