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

Unified Diff: lib/immutable_map.dart

Issue 8348025: - Remove the remaining Array interface. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 9 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
« no previous file with comments | « lib/growable_array.dart ('k') | vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/immutable_map.dart
===================================================================
--- lib/immutable_map.dart (revision 543)
+++ lib/immutable_map.dart (working copy)
@@ -97,7 +97,7 @@
class MutableMap {
// [elements] contains n key-value pairs. The keys are at position
// 2*n, the values at position 2*n+1.
- static fromLiteral(Array elements) {
+ static fromLiteral(List elements) {
var map = new LinkedHashMap();
var len = elements.length;
for (int i = 1; i < len; i += 2) {
« no previous file with comments | « lib/growable_array.dart ('k') | vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698