| Index: tools/dom/templates/html/impl/impl_Node.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Node.darttemplate b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| index e23c5d81c2cfbaea9e6ff972e4b9e8bf99439b3a..3e7e7890223c69afd91b2bdf64932fdd58a6dd10 100644
|
| --- a/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| @@ -189,8 +189,9 @@ $endif
|
| return this[index];
|
| }
|
|
|
| - List<Node> get reversed =>
|
| - new ReversedListView<Node>(this, 0, null);
|
| + List<Node> get reversed {
|
| + return IterableMixinWorkaround.reversedList(this);
|
| + }
|
|
|
| // TODO(jacobr): this could be implemented for child node lists.
|
| // The exception we throw here is misleading.
|
|
|