| Index: sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| diff --git a/sdk/lib/html/templates/html/impl/impl_Node.darttemplate b/sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| index 4af84182c0726cb7d869131d01511319ee4bd245..79d91f52cd2bafdcde69b29ee1a5b74b5b61f7ee 100644
|
| --- a/sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| +++ b/sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| @@ -65,8 +65,8 @@ $endif
|
| Iterable mappedBy(f(Node element)) =>
|
| new MappedIterable<Node, dynamic>(this, f);
|
|
|
| - Collection<Node> where(bool f(Node element)) =>
|
| - new _NodeListWrapper(_Collections.where(this, <Node>[], f));
|
| + Iterable<Node> where(bool f(Node element)) =>
|
| + new WhereIterable<Node>(this, f);
|
|
|
| bool every(bool f(Node element)) => _Collections.every(this, f);
|
|
|
|
|