| Index: dart/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/util/link.dart b/dart/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| index b50b86aeeb87f41df71641d930570f3fb450013d..b4ad7daf39bff359c31b30a8041e118d2f7038b6 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| @@ -30,7 +30,6 @@ class Link<T> implements Iterable<T> {
|
| const Link();
|
|
|
| Link<T> prepend(T element) {
|
| - // TODO(ahe): Use new Link<T>, but this cost 8% performance on VM.
|
| return new LinkEntry<T>(element, this);
|
| }
|
|
|
|
|