| Index: dart/sdk/lib/core/list.dart
|
| diff --git a/dart/sdk/lib/core/list.dart b/dart/sdk/lib/core/list.dart
|
| index cb2e6d3874997b8bb042c582d284575be24942d3..1ce5db5fb9a3d2757229bbf04b8ecbd08a1549a4 100644
|
| --- a/dart/sdk/lib/core/list.dart
|
| +++ b/dart/sdk/lib/core/list.dart
|
| @@ -367,7 +367,9 @@ class ListIterator<E> implements Iterator<E> {
|
|
|
| class MappedList<S, T> extends NonExtensibleListMixin<T> {
|
| final List<S> _list;
|
| - final _Transformation<S, T> _f;
|
| + // TODO(ahe): Restore type when feature is implemented in dart2js
|
| + // checked mode.
|
| + final /* _Transformation<S, T> */ _f;
|
|
|
| MappedList(this._list, T this._f(S element));
|
|
|
|
|