| Index: dart/sdk/lib/core/iterable.dart
|
| diff --git a/dart/sdk/lib/core/iterable.dart b/dart/sdk/lib/core/iterable.dart
|
| index 083a86db0cfd78a7869f5a9b88f97fcd08fba541..b0c3d1222459968cf54a286b3f67350200ba6e7c 100644
|
| --- a/dart/sdk/lib/core/iterable.dart
|
| +++ b/dart/sdk/lib/core/iterable.dart
|
| @@ -372,7 +372,9 @@ typedef T _Transformation<S, T>(S value);
|
|
|
| class MappedIterable<S, T> extends Iterable<T> {
|
| final Iterable<S> _iterable;
|
| - final _Transformation<S, T> _f;
|
| + // TODO(ahe): Restore type when feature is implemented in dart2js
|
| + // checked mode.
|
| + final /* _Transformation<S, T> */ _f;
|
|
|
| MappedIterable(this._iterable, T this._f(S element));
|
|
|
| @@ -386,7 +388,9 @@ class MappedIterable<S, T> extends Iterable<T> {
|
| class MappedIterator<S, T> extends Iterator<T> {
|
| T _current;
|
| final Iterator<S> _iterator;
|
| - final _Transformation<S, T> _f;
|
| + // TODO(ahe): Restore type when feature is implemented in dart2js
|
| + // checked mode.
|
| + final /* _Transformation<S, T> */ _f;
|
|
|
| MappedIterator(this._iterator, T this._f(S element));
|
|
|
|
|