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

Unified Diff: runtime/vm/reusable_handles.h

Issue 326183002: Pass around the current isolate in exception handling code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | « runtime/vm/object.cc ('k') | runtime/vm/stack_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/reusable_handles.h
diff --git a/runtime/vm/reusable_handles.h b/runtime/vm/reusable_handles.h
index 2f8268703051bd1e1fcbceb5efcb6a6f99794233..c1b530103f8f4e53c27a4b8a6ba7aad85160a7d3 100644
--- a/runtime/vm/reusable_handles.h
+++ b/runtime/vm/reusable_handles.h
@@ -91,6 +91,9 @@ REUSABLE_HANDLE_LIST(REUSABLE_SCOPE)
ReusableCodeHandleScope reused_code_handle(isolate);
#define REUSABLE_ERROR_HANDLESCOPE(isolate) \
ReusableErrorHandleScope reused_error_handle(isolate);
+#define REUSABLE_EXCEPTION_HANDLERS_HANDLESCOPE(isolate) \
+ ReusableExceptionHandlersHandleScope \
+ reused_exception_handlers_handle(isolate);
#define REUSABLE_FIELD_HANDLESCOPE(isolate) \
ReusableFieldHandleScope reused_field_handle(isolate);
#define REUSABLE_FUNCTION_HANDLESCOPE(isolate) \
@@ -104,6 +107,8 @@ REUSABLE_HANDLE_LIST(REUSABLE_SCOPE)
ReusableLibraryHandleScope reused_library_handle(isolate);
#define REUSABLE_OBJECT_HANDLESCOPE(isolate) \
ReusableObjectHandleScope reused_object_handle(isolate);
+#define REUSABLE_PC_DESCRIPTORS_HANDLESCOPE(isolate) \
+ ReusablePcDescriptorsHandleScope reused_pc_descriptors_handle(isolate);
#define REUSABLE_STRING_HANDLESCOPE(isolate) \
ReusableStringHandleScope reused_string_handle(isolate);
#define REUSABLE_TYPE_ARGUMENTS_HANDLESCOPE(isolate) \
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/stack_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698