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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 13774006: Moving ListBase, FixedLengthListMixin and UmodifiableListMixin to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Moved ReversedListIterable back to collection-dev Created 7 years, 8 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:
Download patch
« no previous file with comments | « sdk/lib/collection/list.dart ('k') | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index d06776ab2a0b7468f5bc0ce9839786390be56f6c..f659b770e31e4ab709f0ddc1b0bba9e73e31f1a4 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -7684,7 +7684,7 @@ class DomTokenList native "*DOMTokenList" {
// TODO(jacobr): use _Lists.dart to remove some of the duplicated
// functionality.
-class _ChildrenElementList implements List {
+class _ChildrenElementList implements List<Element> {
// Raw Element.
final Element _element;
final HtmlCollection _childElements;
@@ -7742,19 +7742,19 @@ class _ChildrenElementList implements List {
}
String join([String separator]) {
- return IterableMixinWorkaround.joinList(this, separator);
+ return _childElements.join(separator);
}
Iterable map(f(Element element)) {
- return IterableMixinWorkaround.mapList(this, f);
+ return _childElements.map(f);
}
Iterable<Element> where(bool f(Element element)) {
- return IterableMixinWorkaround.where(this, f);
+ return _childElements.where(f);
}
Iterable expand(Iterable f(Element element)) {
- return IterableMixinWorkaround.expand(this, f);
+ return _childElements.expand(f);
}
bool get isEmpty {
« no previous file with comments | « sdk/lib/collection/list.dart ('k') | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698