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

Unified Diff: tool/input_sdk/lib/collection/iterator.dart

Issue 1956933002: Update collection (list / map / iterable) printing. (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 years, 7 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 | « tool/input_sdk/lib/collection/iterable.dart ('k') | tool/input_sdk/lib/collection/linked_hash_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/collection/iterator.dart
diff --git a/tool/input_sdk/lib/collection/iterator.dart b/tool/input_sdk/lib/collection/iterator.dart
index 1fe49cd2dc4d1ea84e27e2d2cbed7a9d7ae3003f..f8707113a771a892b550173eec20ff8b97344ccf 100644
--- a/tool/input_sdk/lib/collection/iterator.dart
+++ b/tool/input_sdk/lib/collection/iterator.dart
@@ -15,7 +15,7 @@ class HasNextIterator<E> {
static const int _NO_NEXT = 1;
static const int _NOT_MOVED_YET = 2;
- Iterator _iterator;
+ Iterator<E> _iterator;
int _state = _NOT_MOVED_YET;
HasNextIterator(this._iterator);
« no previous file with comments | « tool/input_sdk/lib/collection/iterable.dart ('k') | tool/input_sdk/lib/collection/linked_hash_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698