OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 part of org_dartlang_compiler_util; | 5 part of org_dartlang_compiler_util; |
6 | 6 |
7 class Link<T> extends Iterable<T> { | 7 class Link<T> extends Iterable<T> { |
8 T get head => null; | 8 T get head => null; |
9 Link<T> get tail => null; | 9 Link<T> get tail => null; |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 get length { | 66 get length { |
67 throw new UnsupportedError('get:length'); | 67 throw new UnsupportedError('get:length'); |
68 } | 68 } |
69 | 69 |
70 int slowLength() => 0; | 70 int slowLength() => 0; |
71 } | 71 } |
72 | 72 |
73 abstract class LinkBuilder<T> { | 73 abstract class LinkBuilder<T> { |
74 factory LinkBuilder() = LinkBuilderImplementation; | 74 factory LinkBuilder() = LinkBuilderImplementation; |
75 | 75 |
76 Link<T> toLink(); | 76 /** |
| 77 * Prepends all elements added to the builder to [tail]. The resulting list is |
| 78 * returned and the builder is cleared. |
| 79 */ |
| 80 Link<T> toLink([Link<T> tail = const Link()]); |
| 81 |
77 void addLast(T t); | 82 void addLast(T t); |
78 | 83 |
79 final int length; | 84 final int length; |
80 final bool isEmpty; | 85 final bool isEmpty; |
81 } | 86 } |
OLD | NEW |