| Index: sdk/lib/_internal/compiler/implementation/util/link.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/util/link.dart b/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| index d16ae6cce472e95d0d84ea50550cddc5727eeacc..a78f3954b42848c1cb3b9745ea4978325df22943 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/util/link.dart
|
| @@ -49,6 +49,11 @@ class Link<T> extends Iterable<T> {
|
| return this.prepend(from.head).reversePrependAll(from.tail);
|
| }
|
|
|
| + Link<T> skip(int n) {
|
| + if (n == 0) return this;
|
| + throw new RangeError('Index $n out of range');
|
| + }
|
| +
|
| void forEach(void f(T element)) {}
|
|
|
| bool operator ==(other) {
|
|
|