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

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

Issue 11784020: Fixed status files for dart2js corelib/lib/language tests. (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..1de6f1fcc1700a8be4d305d35ca07b6e61dcb18c 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));

Powered by Google App Engine
This is Rietveld 408576698