| Index: dart/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| ===================================================================
|
| --- dart/tools/dom/templates/html/impl/impl_Node.darttemplate (revision 18634)
|
| +++ dart/tools/dom/templates/html/impl/impl_Node.darttemplate (working copy)
|
| @@ -145,10 +145,6 @@
|
| return IterableMixinWorkaround.mapList(this, f);
|
| }
|
|
|
| - List mappedBy(f(Node element)) {
|
| - return IterableMixinWorkaround.mappedByList(this, f);
|
| - }
|
| -
|
| Iterable<Node> where(bool f(Node element)) {
|
| return IterableMixinWorkaround.where(this, f);
|
| }
|
| @@ -200,7 +196,7 @@
|
| return this[index];
|
| }
|
|
|
| - List<Node> get reversed {
|
| + Iterable<Node> get reversed {
|
| return IterableMixinWorkaround.reversedList(this);
|
| }
|
|
|
|
|