Index: runtime/vm/object_store.h |
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h |
index fda986d8c6d37b066e664e0c66bc490561b520e6..805b9b1b465d1cba8a2d9ad0d18d688ed34c288a 100644 |
--- a/runtime/vm/object_store.h |
+++ b/runtime/vm/object_store.h |
@@ -32,6 +32,7 @@ class ObjectStore { |
kMirrors, |
kProfiler, |
kTypedData, |
+ kVMService, |
}; |
~ObjectStore(); |
@@ -265,6 +266,7 @@ class ObjectStore { |
RawLibrary* mirrors_library() const { return mirrors_library_; } |
RawLibrary* profiler_library() const { return profiler_library_; } |
RawLibrary* typed_data_library() const { return typed_data_library_; } |
+ RawLibrary* vmservice_library() const { return vmservice_library_; } |
void set_bootstrap_library(BootstrapLibraryId index, const Library& value) { |
switch (index) { |
@@ -301,6 +303,9 @@ class ObjectStore { |
case kTypedData: |
typed_data_library_ = value.raw(); |
break; |
+ case kVMService: |
+ vmservice_library_ = value.raw(); |
+ break; |
default: |
UNREACHABLE(); |
} |
@@ -520,6 +525,7 @@ class ObjectStore { |
RawLibrary* profiler_library_; |
RawLibrary* root_library_; |
RawLibrary* typed_data_library_; |
+ RawLibrary* vmservice_library_; |
RawGrowableObjectArray* libraries_; |
RawGrowableObjectArray* pending_classes_; |
RawGrowableObjectArray* pending_functions_; |