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

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

Issue 397243002: Make IterableMixinWorkaround using classes return correctly typed Iterables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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: sdk/lib/collection/list.dart
diff --git a/sdk/lib/collection/list.dart b/sdk/lib/collection/list.dart
index b6e1a11b66e2882ebfc6701a9ecaf54787d7a460..6530239d6e6b43627d3d7e0818f621b0769a6a15 100644
--- a/sdk/lib/collection/list.dart
+++ b/sdk/lib/collection/list.dart
@@ -49,7 +49,6 @@ abstract class ListBase<E> extends Object with ListMixin<E> {
* "package:collection/wrappers.dart" instead.
*/
abstract class ListMixin<E> implements List<E> {
-
// Iterable interface.
Iterator<E> get iterator => new ListIterator<E>(this);

Powered by Google App Engine
This is Rietveld 408576698