| 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 2e10827ccb622ab7633f5592b2b7b038b85198cc..813b041f2df95cfe116a211d27f6d94730ab4f1d 100644
|
| --- a/sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| +++ b/sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| @@ -64,8 +64,8 @@ $endif
|
|
|
| Iterable mappedBy(f(Node element)) => new MappedIterable(this, f);
|
|
|
| - Collection<Node> where(bool f(Node element)) =>
|
| - new _NodeListWrapper(_Collections.where(this, <Node>[], f));
|
| + Iterable<Node> where(bool f(Node element)) =>
|
| + new FilteredIterable<Node>(this, f);
|
|
|
| bool every(bool f(Node element)) => _Collections.every(this, f);
|
|
|
|
|