| Index: utils/apidoc/mdn/extract.dart
|
| diff --git a/utils/apidoc/mdn/extract.dart b/utils/apidoc/mdn/extract.dart
|
| index 20dcf217edf24f176d78de861e10929a6558f47c..5844e2eec8a4c74817c23063bcd04b12a572c816 100644
|
| --- a/utils/apidoc/mdn/extract.dart
|
| +++ b/utils/apidoc/mdn/extract.dart
|
| @@ -454,7 +454,7 @@ class PostOrderTraversalIterator implements Iterator<Node> {
|
| _next = _leftMostDescendent(start);
|
| }
|
|
|
| - bool hasNext() => _next != null;
|
| + bool get hasNext => _next != null;
|
|
|
| Node next() {
|
| if (_next == null) return null;
|
|
|