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

Unified Diff: dart/tools/dom/templates/html/impl/impl_Node.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
Index: dart/tools/dom/templates/html/impl/impl_Node.darttemplate
===================================================================
--- dart/tools/dom/templates/html/impl/impl_Node.darttemplate (revision 18634)
+++ dart/tools/dom/templates/html/impl/impl_Node.darttemplate (working copy)
@@ -145,10 +145,6 @@
return IterableMixinWorkaround.mapList(this, f);
}
- List mappedBy(f(Node element)) {
- return IterableMixinWorkaround.mappedByList(this, f);
- }
-
Iterable<Node> where(bool f(Node element)) {
return IterableMixinWorkaround.where(this, f);
}
@@ -200,7 +196,7 @@
return this[index];
}
- List<Node> get reversed {
+ Iterable<Node> get reversed {
return IterableMixinWorkaround.reversedList(this);
}

Powered by Google App Engine
This is Rietveld 408576698