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

Unified Diff: sdk/lib/html/html_common/filtered_element_list.dart

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: sdk/lib/html/html_common/filtered_element_list.dart
diff --git a/sdk/lib/html/html_common/filtered_element_list.dart b/sdk/lib/html/html_common/filtered_element_list.dart
index 654d0b7fb249cd5e25d0045f6a6e05f6be74f4b6..cad661e7b0ae1dc01b37036b1d9e043a4b98676d 100644
--- a/sdk/lib/html/html_common/filtered_element_list.dart
+++ b/sdk/lib/html/html_common/filtered_element_list.dart
@@ -80,10 +80,6 @@ class FilteredElementList extends ListBase<Element> {
_filtered.sublist(start, end).forEach((el) => el.remove());
}
- void insertRange(int start, int rangeLength, [initialValue = null]) {
- throw new UnimplementedError();
- }
-
void clear() {
// Currently, ElementList#clear clears even non-element nodes, so we follow
// that behavior.

Powered by Google App Engine
This is Rietveld 408576698