Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1156)

Unified Diff: pkg/front_end/lib/src/fasta/util/link.dart

Issue 2718113003: Run dartfmt on pkg/front_end/lib. (Closed)
Patch Set: Rerun after merging. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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');
« no previous file with comments | « pkg/front_end/lib/src/fasta/translate_uri.dart ('k') | pkg/front_end/lib/src/fasta/util/link_implementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698