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

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

Issue 13872007: Refactor removeRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebuild dom. 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
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 4177ea6abbc4c9bf5c7a52e5dfd77ae33b8b102d..968d32c55fd9951a6508e46917a21013798dec22 100644
--- a/tools/dom/templates/html/impl/impl_Element.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
@@ -196,7 +196,7 @@ class _ChildrenElementList extends ListBase<Element> {
_childElements.retainWhere(test);
}
- void removeRange(int start, int rangeLength) {
+ void removeRange(int start, int end) {
throw new UnimplementedError();
}
@@ -329,7 +329,7 @@ class _FrozenElementList extends ListBase {
throw new UnsupportedError('');
}
- void removeRange(int start, int rangeLength) {
+ void removeRange(int start, int end) {
throw new UnsupportedError('');
}

Powered by Google App Engine
This is Rietveld 408576698