| Index: lib/html/templates/html/impl/impl_Node.darttemplate
|
| diff --git a/lib/html/templates/html/impl/impl_Node.darttemplate b/lib/html/templates/html/impl/impl_Node.darttemplate
|
| index b7f581e818184f53f1e2441cb180aa01f17a3670..58f6b22cdcadafbb129416a810ca8793b8142d60 100644
|
| --- a/lib/html/templates/html/impl/impl_Node.darttemplate
|
| +++ b/lib/html/templates/html/impl/impl_Node.darttemplate
|
| @@ -7,7 +7,7 @@
|
| * the actual child nodes of an element until strictly necessary greatly
|
| * improving performance for the typical cases where it is not required.
|
| */
|
| -class _ChildNodeListLazy implements NodeList {
|
| +class _ChildNodeListLazy implements List {
|
| final _NodeImpl _this;
|
|
|
| _ChildNodeListLazy(this._this);
|
| @@ -96,7 +96,7 @@ $endif
|
| throw new UnsupportedOperationException(
|
| "Cannot insertRange on immutable List.");
|
| }
|
| - NodeList getRange(int start, int rangeLength) =>
|
| + List<Node> getRange(int start, int rangeLength) =>
|
| new _NodeListWrapper(_Lists.getRange(this, start, rangeLength, <Node>[]));
|
|
|
| // -- end List<Node> mixins.
|
|
|