| Index: utils/apidoc/mdn/extract.dart
|
| diff --git a/utils/apidoc/mdn/extract.dart b/utils/apidoc/mdn/extract.dart
|
| index 65d753b8c2068dd6c56c53869006d15e6ad8d436..2e2d7660284508e3fcd0ed62152c10dc63c3a0ba 100644
|
| --- a/utils/apidoc/mdn/extract.dart
|
| +++ b/utils/apidoc/mdn/extract.dart
|
| @@ -1,3 +1,8 @@
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +import "dart:collection";
|
| import 'dart:html';
|
| import 'dart:json' as json;
|
|
|
| @@ -477,7 +482,7 @@ class PostOrderTraversalIterator implements Iterator<Node> {
|
| }
|
| }
|
|
|
| -class PostOrderTraversal extends Iterable<Node> {
|
| +class PostOrderTraversal extends IterableBase<Node> {
|
| final Node _node;
|
| PostOrderTraversal(this._node);
|
|
|
|
|