Index: runtime/vm/object_store.h |
=================================================================== |
--- runtime/vm/object_store.h (revision 4295) |
+++ runtime/vm/object_store.h (working copy) |
@@ -254,6 +254,11 @@ |
native_wrappers_library_ = value.raw(); |
} |
+ RawLibrary* mirrors_library() const { return mirrors_library_; } |
+ void set_mirrors_library(const Library& value) { |
+ mirrors_library_ = value.raw(); |
+ } |
+ |
RawLibrary* root_library() const { return root_library_; } |
void set_root_library(const Library& value) { |
root_library_ = value.raw(); |
@@ -359,6 +364,7 @@ |
RawLibrary* core_library_; |
RawLibrary* core_impl_library_; |
RawLibrary* native_wrappers_library_; |
+ RawLibrary* mirrors_library_; |
RawLibrary* root_library_; |
RawLibrary* registered_libraries_; |
RawArray* pending_classes_; |