Chromium Code Reviews| Index: frog/leg/util/link_implementation.dart |
| =================================================================== |
| --- frog/leg/util/link_implementation.dart (revision 1463) |
| +++ frog/leg/util/link_implementation.dart (working copy) |
| @@ -34,8 +34,8 @@ |
| const AbstractLink(); |
| - Link<T> prepend(T element) { |
| - return new Link<T>(element, this); |
| + Link prepend(T element) { |
| + return new Link(element, this); |
| } |
| Iterator<T> iterator() => toList().iterator(); |