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

Unified Diff: sdk/lib/collection/list.dart

Issue 730543002: Remove use of IterableMixinWorkaround from _List, _ImmutableList and _GrowableList. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: addressed comments Created 6 years, 1 month 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: sdk/lib/collection/list.dart
===================================================================
--- sdk/lib/collection/list.dart (revision 41737)
+++ sdk/lib/collection/list.dart (working copy)
@@ -322,7 +322,7 @@
}
Map<int, E> asMap() {
- return new ListMapView(this);
+ return new ListMapView<E>(this);
}
void _rangeCheck(int start, int end) {

Powered by Google App Engine
This is Rietveld 408576698