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

Unified Diff: runtime/vm/bootstrap.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/bootstrap.h
diff --git a/runtime/vm/bootstrap.h b/runtime/vm/bootstrap.h
index 0b7412a9008d6a19e7adf843e3e6e675ae67fa04..9f7f4e1ee74a082f382d0162bcaee774255f60e6 100644
--- a/runtime/vm/bootstrap.h
+++ b/runtime/vm/bootstrap.h
@@ -19,6 +19,7 @@ class Bootstrap : public AllStatic {
public:
static RawScript* LoadCoreScript(bool patch);
static RawScript* LoadCoreImplScript(bool patch);
+ static RawScript* LoadCollectionScript(bool patch);
static RawScript* LoadMathScript(bool patch);
static RawScript* LoadIsolateScript(bool patch);
static RawScript* LoadMirrorsScript(bool patch);
@@ -33,6 +34,7 @@ class Bootstrap : public AllStatic {
static const char corelib_patch_[];
static const char corelib_impl_source_[];
static const char corelib_impl_patch_[];
+ static const char collection_source_[];
static const char math_source_[];
static const char math_patch_[];
static const char isolate_source_[];

Powered by Google App Engine
This is Rietveld 408576698