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

Unified Diff: runtime/vm/object.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/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 17188750b6e47d3c79fe46c457dab43e54563d7d..3563b1279ec98f94aa52a32755986335ec2d0e0e 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -1009,7 +1009,7 @@ RawError* Object::Init(Isolate* isolate) {
INIT_LIBRARY(Core, core, true);
INIT_LIBRARY(Async, async, true);
- INIT_LIBRARY(Collection, collection, false);
+ INIT_LIBRARY(Collection, collection, true);
INIT_LIBRARY(CollectionDev, collection_dev, false);
INIT_LIBRARY(Crypto, crypto, false);
INIT_LIBRARY(Isolate, isolate, true);

Powered by Google App Engine
This is Rietveld 408576698