| Index: runtime/vm/object_store.h
|
| ===================================================================
|
| --- runtime/vm/object_store.h (revision 26486)
|
| +++ runtime/vm/object_store.h (working copy)
|
| @@ -349,6 +349,10 @@
|
| pending_classes_ = value.raw();
|
| }
|
|
|
| + RawGrowableObjectArray* pending_functions() const {
|
| + return pending_functions_;
|
| + }
|
| +
|
| RawError* sticky_error() const { return sticky_error_; }
|
| void set_sticky_error(const Error& value) {
|
| ASSERT(!value.IsNull());
|
| @@ -485,6 +489,7 @@
|
| RawLibrary* utf_library_;
|
| RawGrowableObjectArray* libraries_;
|
| RawGrowableObjectArray* pending_classes_;
|
| + RawGrowableObjectArray* pending_functions_;
|
| RawError* sticky_error_;
|
| RawString* unhandled_exception_handler_;
|
| RawContext* empty_context_;
|
|
|