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

Unified Diff: dart/tools/dom/templates/immutable_list_mixin.darttemplate

Issue 12296011: Version 0.3.7.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 10 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/tools/dom/templates/html/impl/impl_Node.darttemplate ('k') | dart/utils/pub/entrypoint.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/dom/templates/immutable_list_mixin.darttemplate
===================================================================
--- dart/tools/dom/templates/immutable_list_mixin.darttemplate (revision 18634)
+++ dart/tools/dom/templates/immutable_list_mixin.darttemplate (working copy)
@@ -32,9 +32,6 @@
Iterable map(f($E element)) =>
IterableMixinWorkaround.mapList(this, f);
- List mappedBy(f($E element)) =>
- IterableMixinWorkaround.mappedByList(this, f);
-
Iterable<$E> where(bool f($E element)) =>
IterableMixinWorkaround.where(this, f);
@@ -107,7 +104,7 @@
// clear() defined by IDL.
$endif
- List<$E> get reversed {
+ Iterable<$E> get reversed {
return IterableMixinWorkaround.reversedList(this);
}
« no previous file with comments | « dart/tools/dom/templates/html/impl/impl_Node.darttemplate ('k') | dart/utils/pub/entrypoint.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698