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

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: Prefer local variable. 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
Index: runtime/vm/bootstrap.cc
diff --git a/runtime/vm/bootstrap.cc b/runtime/vm/bootstrap.cc
index f0cd598bccaae7145b7280a1f94a008663a60744..177a68b4b0ab4b826b38b337915322ae97f9fac5 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_;
erikcorry 2013/03/22 12:59:24 Strange code is strange.
+ const char* source = patch ? collection_patch_ : collection_source_;
return LoadScript(url, source, patch);
}

Powered by Google App Engine
This is Rietveld 408576698