| Index: sdk/lib/_internal/compiler/implementation/util/link.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/util/link.dart b/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| index 8ac2ea3a70763dfa137df9126ce3c2b3b78a2847..0329e9c92e024585f1f71a5fe270828f3c90d206 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| @@ -34,7 +34,7 @@ class Link<T> extends Iterable<T> {
|
| return new LinkEntry<T>(element, this);
|
| }
|
|
|
| - Iterator<T> iterator() => new LinkIterator<T>(this);
|
| + Iterator<T> get iterator => new LinkIterator<T>(this);
|
|
|
| void printOn(StringBuffer buffer, [separatedBy]) {
|
| }
|
|
|