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

Unified Diff: runtime/vm/object_store.h

Issue 11274043: Move Arrays, Collections and Maps into a new library, dart:collections. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove uncommented code. Created 8 years, 2 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
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/vm.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 301293e6758d6821b1285a6c1744cd2afc2486a3..75ae416263164df756b1522fb036e7b406a3bdb7 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -362,6 +362,13 @@ class ObjectStore {
core_impl_library_ = value.raw();
}
+ RawLibrary* collection_library() const {
+ return collection_library_;
+ }
+ void set_collection_library(const Library& value) {
+ collection_library_ = value.raw();
+ }
+
RawLibrary* math_library() const {
return math_library_;
}
@@ -526,6 +533,7 @@ class ObjectStore {
RawArray* canonical_type_arguments_;
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
+ RawLibrary* collection_library_;
RawLibrary* math_library_;
RawLibrary* isolate_library_;
RawLibrary* mirrors_library_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/vm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698