| Index: pkg/front_end/lib/src/fasta/util/link.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/util/link.dart b/pkg/front_end/lib/src/fasta/util/link.dart
|
| index 0748e6123dcd448ebf0976e3895450a0689fbfb8..87d6b2adf4e8f351200f485d2c730f26ee892739 100644
|
| --- a/pkg/front_end/lib/src/fasta/util/link.dart
|
| +++ b/pkg/front_end/lib/src/fasta/util/link.dart
|
| @@ -4,11 +4,8 @@
|
|
|
| library fasta.util.link;
|
|
|
| -import 'link_implementation.dart' show
|
| - LinkBuilderImplementation,
|
| - LinkEntry,
|
| - LinkIterator,
|
| - MappedLinkIterable;
|
| +import 'link_implementation.dart'
|
| + show LinkBuilderImplementation, LinkEntry, LinkIterator, MappedLinkIterable;
|
|
|
| class Link<T> implements Iterable<T> {
|
| T get head => throw new StateError("no elements");
|
| @@ -136,6 +133,7 @@ class Link<T> implements Iterable<T> {
|
| K fold<K>(K initialValue, K combine(K value, T element)) {
|
| return _unsupported('fold');
|
| }
|
| +
|
| T get last => _unsupported('get:last');
|
| T lastWhere(bool f(T e), {T orElse()}) => _unsupported('lastWhere');
|
| String join([separator = '']) => _unsupported('join');
|
|
|