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

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

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:
Download patch
« no previous file with comments | « no previous file | 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 f66bf3a19f923b63344b41003152f27bd0880479..c6f568b65332ff84eb682232f2b56f30128b7c8d 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -7771,7 +7771,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)) {
@@ -7960,7 +7960,7 @@ class _ChildrenElementList extends ListBase<Element> {
}
Map<int, Element> asMap() {
- return _childElements.asMapList(this);
+ return _childElements.asMap();
}
String toString() {
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698