| 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 da188a852b8079c21316620202207a99481379b2..4af84182c0726cb7d869131d01511319ee4bd245 100644
|
| --- a/sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| +++ b/sdk/lib/html/templates/html/impl/impl_Node.darttemplate
|
| @@ -62,10 +62,11 @@ $endif
|
|
|
| void forEach(void f(Node element)) => _Collections.forEach(this, f);
|
|
|
| - Collection mappedBy(f(Node element)) => _Collections.mappedBy(this, [], f);
|
| + 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));
|
| + new _NodeListWrapper(_Collections.where(this, <Node>[], f));
|
|
|
| bool every(bool f(Node element)) => _Collections.every(this, f);
|
|
|
|
|