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

Unified Diff: dart/sdk/lib/html/html_common/filtered_element_list.dart

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/sdk/lib/html/dartium/html_dartium.dart ('k') | dart/sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/html/html_common/filtered_element_list.dart
===================================================================
--- dart/sdk/lib/html/html_common/filtered_element_list.dart (revision 18634)
+++ dart/sdk/lib/html/html_common/filtered_element_list.dart (working copy)
@@ -69,7 +69,7 @@
return element is Element && _childNodes.contains(element);
}
- List<Element> get reversed => _filtered.reversed;
+ Iterable<Element> get reversed => _filtered.reversed;
void sort([int compare(Element a, Element b)]) {
throw new UnsupportedError('TODO(jacobr): should we impl?');
@@ -102,7 +102,6 @@
}
Iterable map(f(Element element)) => _filtered.map(f);
- List mappedBy(f(Element element)) => _filtered.mappedBy(f);
Iterable<Element> where(bool f(Element element)) => _filtered.where(f);
Iterable expand(Iterable f(Element element)) => _filtered.expand(f);
« no previous file with comments | « dart/sdk/lib/html/dartium/html_dartium.dart ('k') | dart/sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698