| Index: dart/lib/compiler/implementation/util/link.dart
 | 
| diff --git a/dart/lib/compiler/implementation/util/link.dart b/dart/lib/compiler/implementation/util/link.dart
 | 
| index 1029363bbdca4d9b1874b0dd95f2246d26cb75c9..f931a8ea3d5b841102245d0f9ba0685026b5a79d 100644
 | 
| --- a/dart/lib/compiler/implementation/util/link.dart
 | 
| +++ b/dart/lib/compiler/implementation/util/link.dart
 | 
| @@ -28,7 +28,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);
 | 
|    }
 | 
|  
 | 
| 
 |