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

Unified Diff: sdk/lib/core/iterable.dart

Issue 11410086: Use iterator, moveNext(), current. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Created 8 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/core/iterable.dart
diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart
index 19972c12fd94c46ef1e36b2a13e5140d46624d91..72bb3ceddedb7111102e7c47b464261c526c579b 100644
--- a/sdk/lib/core/iterable.dart
+++ b/sdk/lib/core/iterable.dart
@@ -18,5 +18,5 @@ abstract class Iterable<E> {
/**
* Returns an [Iterator] that iterates over this [Iterable] object.
*/
- Iterator<E> iterator();
+ Iterator<E> get iterator;
}

Powered by Google App Engine
This is Rietveld 408576698