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

Unified Diff: runtime/vm/object_store.h

Issue 419103003: Handle load errors in deferred code (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 38636)
+++ runtime/vm/object_store.h (working copy)
@@ -354,6 +354,10 @@
return pending_functions_;
}
+ RawGrowableObjectArray* pending_deferred_loads() const {
+ return pending_deferred_loads_;
+ }
+
RawGrowableObjectArray* resume_capabilities() const {
return resume_capabilities_;
}
@@ -504,6 +508,7 @@
RawGrowableObjectArray* libraries_;
RawGrowableObjectArray* pending_classes_;
RawGrowableObjectArray* pending_functions_;
+ RawGrowableObjectArray* pending_deferred_loads_;
RawGrowableObjectArray* resume_capabilities_;
RawError* sticky_error_;
RawString* unhandled_exception_handler_;

Powered by Google App Engine
This is Rietveld 408576698