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

Unified Diff: tools/dom/templates/html/impl/impl_Element.darttemplate

Issue 13860003: Fix bug in previous commit. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/templates/html/impl/impl_Element.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
index bdfd4c91c210d28165424a3a1d2a471ae490849d..5c5482fd24f18665270b4bdc5be5f610e338a7ba 100644
--- a/tools/dom/templates/html/impl/impl_Element.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
@@ -92,7 +92,7 @@ class _ChildrenElementList extends ListBase<Element> {
}
Iterable<Element> skip(int n) {
- return _childElements.skipList(n);
+ return _childElements.skip(n);
}
Iterable<Element> skipWhile(bool test(Element value)) {
@@ -281,7 +281,7 @@ class _ChildrenElementList extends ListBase<Element> {
}
Map<int, Element> asMap() {
- return _childElements.asMapList(this);
+ return _childElements.asMap();
}
String toString() {
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698