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

Unified Diff: runtime/vm/object_store.h

Issue 11959012: Add dart:collection_dev library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update create_sdk script. Created 7 years, 11 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 97c822132c657d319b3517dbaa13cd6ea11f0256..bf980646691e459f35543f287a1f35977fb11975 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -377,6 +377,13 @@ class ObjectStore {
collection_library_ = value.raw();
}
+ RawLibrary* collection_dev_library() const {
+ return collection_dev_library_;
+ }
+ void set_collection_dev_library(const Library& value) {
+ collection_dev_library_ = value.raw();
+ }
+
RawLibrary* math_library() const {
return math_library_;
}
@@ -564,6 +571,7 @@ class ObjectStore {
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
RawLibrary* collection_library_;
+ RawLibrary* collection_dev_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