Index: tools/dom/templates/html/impl/impl_Node.darttemplate |
diff --git a/tools/dom/templates/html/impl/impl_Node.darttemplate b/tools/dom/templates/html/impl/impl_Node.darttemplate |
index b030b03351604efd39975d356867244667ee35d2..0fde760019c29000182a18527f22081244f9b4a7 100644 |
--- a/tools/dom/templates/html/impl/impl_Node.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_Node.darttemplate |
@@ -157,14 +157,10 @@ $endif |
throw new UnsupportedError( |
"Cannot setRange on immutable List."); |
} |
- void removeRange(int start, int rangeLength) { |
+ void removeRange(int start, int end) { |
throw new UnsupportedError( |
"Cannot removeRange on immutable List."); |
} |
- void insertRange(int start, int rangeLength, [Node initialValue]) { |
- throw new UnsupportedError( |
- "Cannot insertRange on immutable List."); |
- } |
Iterable<Node> getRange(int start, int end) { |
throw new UnimplementedError("NodeList.getRange"); |