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

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

Issue 11794047: Remove generic typedefs that dart2js chokes on. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Update status files for non-browser tests 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
« no previous file with comments | « dart/sdk/lib/core/iterable.dart ('k') | dart/tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « dart/sdk/lib/core/iterable.dart ('k') | dart/tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698