Chromium Code Reviews| Index: frog/leg/util/link_implementation.dart |
| =================================================================== |
| --- frog/leg/util/link_implementation.dart (revision 1435) |
| +++ frog/leg/util/link_implementation.dart (working copy) |
| @@ -2,7 +2,7 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| -class LinkFactory { |
| +class LinkFactory<T> { |
|
regis
2011/11/11 01:11:07
Can you please add:
// TODO(regis): Move type par
srdjan
2011/11/11 01:18:11
With pleasure.
|
| factory Link(head, [Link tail]) { |
| return new LinkEntry(head, (tail === null) ? const LinkTail() : tail); |
| } |