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

Unified Diff: runtime/vm/object_store.h

Issue 133273011: Revert "Rename internal library dart:_collection-dev to dart:_internal." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: reapply after revert. Created 6 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/parser.cc » ('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 866f62c207b71aad453f101d55d42bee140458d3..710572ffd2b03206ffd4341b0c0bcdf4bd17300d 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -24,8 +24,8 @@ class ObjectStore {
kAsync,
kCore,
kCollection,
- kCollectionDev,
kConvert,
+ kInternal,
kIsolate,
kMath,
kMirrors,
@@ -273,10 +273,8 @@ class ObjectStore {
RawLibrary* builtin_library() const { return builtin_library_; }
RawLibrary* core_library() const { return core_library_; }
RawLibrary* collection_library() const { return collection_library_; }
- RawLibrary* collection_dev_library() const {
- return collection_dev_library_;
- }
RawLibrary* convert_library() const { return convert_library_; }
+ RawLibrary* internal_library() const { return internal_library_; }
RawLibrary* isolate_library() const { return isolate_library_; }
RawLibrary* math_library() const { return math_library_; }
RawLibrary* mirrors_library() const { return mirrors_library_; }
@@ -292,12 +290,12 @@ class ObjectStore {
case kCollection:
collection_library_ = value.raw();
break;
- case kCollectionDev:
- collection_dev_library_ = value.raw();
- break;
case kConvert:
convert_library_ = value.raw();
break;
+ case kInternal:
+ internal_library_ = value.raw();
+ break;
case kIsolate:
isolate_library_ = value.raw();
break;
@@ -465,8 +463,8 @@ class ObjectStore {
RawLibrary* builtin_library_;
RawLibrary* core_library_;
RawLibrary* collection_library_;
- RawLibrary* collection_dev_library_;
RawLibrary* convert_library_;
+ RawLibrary* internal_library_;
RawLibrary* isolate_library_;
RawLibrary* math_library_;
RawLibrary* mirrors_library_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698