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

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

Issue 13956006: Remove insertRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Replace type with var.wq 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 57c1d4c0cf015eec1fd96b0382eb23bdf3b7fac0..02ff65f2d26a5e681854247e510eaa53b06cf213 100644
--- a/tools/dom/templates/html/impl/impl_Element.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
@@ -192,10 +192,6 @@ class _ChildrenElementList extends ListBase<Element> {
throw new UnimplementedError();
}
- void insertRange(int start, int rangeLength, [initialValue = null]) {
- throw new UnimplementedError();
- }
-
Iterable getRange(int start, int end) {
throw new UnimplementedError();
}
@@ -318,10 +314,6 @@ class _FrozenElementList extends ListBase {
throw new UnsupportedError('');
}
- void insertRange(int start, int rangeLength, [initialValue = null]) {
- throw new UnsupportedError('');
- }
-
List<Element> sublist(int start, [int end]) {
return new _FrozenElementList._wrap(_nodeList.sublist(start, end));
}

Powered by Google App Engine
This is Rietveld 408576698