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

Unified Diff: runtime/vm/reusable_handles.h

Issue 268853003: Fix library snapshotting breakage with native entry symbol resolver (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | « runtime/vm/raw_object_snapshot.cc ('k') | tests/standalone/issue14236_test.dart » ('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 ef04f6ce803edfba9828cc8f846f0ad16bfb6da1..2f8268703051bd1e1fcbceb5efcb6a6f99794233 100644
--- a/runtime/vm/reusable_handles.h
+++ b/runtime/vm/reusable_handles.h
@@ -95,8 +95,13 @@ REUSABLE_HANDLE_LIST(REUSABLE_SCOPE)
ReusableFieldHandleScope reused_field_handle(isolate);
#define REUSABLE_FUNCTION_HANDLESCOPE(isolate) \
ReusableFunctionHandleScope reused_function_handle(isolate);
+#define REUSABLE_GROWABLE_OBJECT_ARRAY_HANDLESCOPE(isolate) \
+ ReusableGrowableObjectArrayHandleScope \
+ reused_growable_object_array_handle(isolate)
#define REUSABLE_INSTANCE_HANDLESCOPE(isolate) \
ReusableInstanceHandleScope reused_instance_handle(isolate);
+#define REUSABLE_LIBRARY_HANDLESCOPE(isolate) \
+ ReusableLibraryHandleScope reused_library_handle(isolate);
#define REUSABLE_OBJECT_HANDLESCOPE(isolate) \
ReusableObjectHandleScope reused_object_handle(isolate);
#define REUSABLE_STRING_HANDLESCOPE(isolate) \
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | tests/standalone/issue14236_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698