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

Unified Diff: runtime/vm/object_store.h

Issue 133893007: Rename internal library dart:_collection-dev to dart:_internal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typo in dart2js Symbol lookup. 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
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 866f62c207b71aad453f101d55d42bee140458d3..2c05769618ea2b109051a09fa27ef749b7ef39a0 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,8 +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* internal_library() const {
Ivan Posva 2014/01/14 23:35:32 Sorted and it probably fits onto a single line now
Lasse Reichstein Nielsen 2014/01/15 09:27:42 Done.
+ return internal_library_;
}
RawLibrary* convert_library() const { return convert_library_; }
RawLibrary* isolate_library() const { return isolate_library_; }
@@ -292,8 +292,8 @@ class ObjectStore {
case kCollection:
collection_library_ = value.raw();
break;
- case kCollectionDev:
- collection_dev_library_ = value.raw();
+ case kInternal:
Ivan Posva 2014/01/14 23:35:32 Sorted.
Lasse Reichstein Nielsen 2014/01/15 09:27:42 Done.
+ internal_library_ = value.raw();
break;
case kConvert:
convert_library_ = value.raw();
@@ -465,7 +465,7 @@ class ObjectStore {
RawLibrary* builtin_library_;
RawLibrary* core_library_;
RawLibrary* collection_library_;
- RawLibrary* collection_dev_library_;
+ RawLibrary* internal_library_;
Ivan Posva 2014/01/14 23:35:32 sorted
Lasse Reichstein Nielsen 2014/01/15 09:27:42 Done.
RawLibrary* convert_library_;
RawLibrary* isolate_library_;
RawLibrary* math_library_;

Powered by Google App Engine
This is Rietveld 408576698