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

Unified Diff: runtime/vm/object.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: Move collection_sources.gypi to lib/collection/. 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
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 30e7c804e79368b09666e01fecb0195d0ad36c08..efc8552f477db861345e67e03b452b544916dca6 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -1909,6 +1909,7 @@ class Library : public Object {
static bool IsKeyUsed(intptr_t key);
static void InitCoreLibrary(Isolate* isolate);
+ static void InitCollectionLibrary(Isolate* isolate);
static void InitMathLibrary(Isolate* isolate);
static void InitIsolateLibrary(Isolate* isolate);
static void InitMirrorsLibrary(Isolate* isolate);
@@ -1917,6 +1918,7 @@ class Library : public Object {
static RawLibrary* CoreLibrary();
static RawLibrary* CoreImplLibrary();
+ static RawLibrary* CollectionLibrary();
static RawLibrary* MathLibrary();
static RawLibrary* IsolateLibrary();
static RawLibrary* MirrorsLibrary();

Powered by Google App Engine
This is Rietveld 408576698