| Index: runtime/vm/object_store.h
|
| diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
|
| index e7aac5ba48af53cc0abc63e5cd84487c0b874681..193c84784c6c74198c5dd46aebc171e9a490d072 100644
|
| --- a/runtime/vm/object_store.h
|
| +++ b/runtime/vm/object_store.h
|
| @@ -332,6 +332,14 @@ class ObjectStore {
|
| libraries_ = value.raw();
|
| }
|
|
|
| + RawGrowableObjectArray* closure_functions() const {
|
| + return closure_functions_;
|
| + }
|
| + void set_closure_functions(const GrowableObjectArray& value) {
|
| + ASSERT(!value.IsNull());
|
| + closure_functions_ = value.raw();
|
| + }
|
| +
|
| RawGrowableObjectArray* pending_classes() const { return pending_classes_; }
|
| void set_pending_classes(const GrowableObjectArray& value) {
|
| ASSERT(!value.IsNull());
|
| @@ -542,6 +550,7 @@ class ObjectStore {
|
| RawLibrary* typed_data_library_;
|
| RawLibrary* vmservice_library_;
|
| RawGrowableObjectArray* libraries_;
|
| + RawGrowableObjectArray* closure_functions_;
|
| RawGrowableObjectArray* pending_classes_;
|
| RawGrowableObjectArray* pending_deferred_loads_;
|
| RawGrowableObjectArray* resume_capabilities_;
|
|
|