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

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

Issue 11773026: Update co19 status files and some small fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/core/iterable.dart
diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart
index d150ab32746d85e97fc1a4e0dbeae938d93e1c5e..083a86db0cfd78a7869f5a9b88f97fcd08fba541 100644
--- a/sdk/lib/core/iterable.dart
+++ b/sdk/lib/core/iterable.dart
@@ -372,7 +372,7 @@ typedef T _Transformation<S, T>(S value);
class MappedIterable<S, T> extends Iterable<T> {
final Iterable<S> _iterable;
- final _Transformation _f;
+ final _Transformation<S, T> _f;
MappedIterable(this._iterable, T this._f(S element));
@@ -386,7 +386,7 @@ class MappedIterable<S, T> extends Iterable<T> {
class MappedIterator<S, T> extends Iterator<T> {
T _current;
final Iterator<S> _iterator;
- final _Transformation _f;
+ final _Transformation<S, T> _f;
MappedIterator(this._iterator, T this._f(S element));
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/constant_system_dart.dart ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698