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

Unified Diff: runtime/vm/bootstrap.cc

Issue 12827018: Add a new implementation of HashMap that uses JS objects for its (multiple) hash tables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove type. Created 7 years, 9 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/bootstrap.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bootstrap.cc
diff --git a/runtime/vm/bootstrap.cc b/runtime/vm/bootstrap.cc
index f7a8f8aafe43da7d5bc058931a7f1d67be362e2b..06527b7df7108cb2e619ea157dc4d75b5108e9a1 100644
--- a/runtime/vm/bootstrap.cc
+++ b/runtime/vm/bootstrap.cc
@@ -43,7 +43,7 @@ RawScript* Bootstrap::LoadCoreScript(bool patch) {
RawScript* Bootstrap::LoadCollectionScript(bool patch) {
const char* url = patch ? "dart:collection-patch" : "dart:collection";
- const char* source = patch ? collection_source_ : collection_source_;
+ const char* source = patch ? collection_patch_ : collection_source_;
return LoadScript(url, source, patch);
}
« no previous file with comments | « runtime/vm/bootstrap.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698