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

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

Issue 2723113002: Consolidate analyzer dependencies. (Closed)
Patch Set: Remove new dependency on AsyncMarker. 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_implementation.dart
diff --git a/pkg/front_end/lib/src/fasta/util/link_implementation.dart b/pkg/front_end/lib/src/fasta/util/link_implementation.dart
index b76c98ffcc422da9586608e3cb00cc8d6bcdaffa..cc74c01ef4dee61422fe1d0cc1d34159009083ee 100644
--- a/pkg/front_end/lib/src/fasta/util/link_implementation.dart
+++ b/pkg/front_end/lib/src/fasta/util/link_implementation.dart
@@ -12,7 +12,7 @@ class LinkIterator<T> implements Iterator<T> {
T _current;
Link<T> _link;
- LinkIterator(Link<T> this._link);
+ LinkIterator(this._link);
T get current => _current;
@@ -64,7 +64,7 @@ class LinkEntry<T> extends Link<T> {
final T head;
Link<T> tail;
- LinkEntry(T this.head, [Link<T> tail])
+ LinkEntry(this.head, [Link<T> tail])
: this.tail = ((tail == null) ? const Link() : tail);
Link<T> prepend(T element) {
« no previous file with comments | « pkg/front_end/lib/src/fasta/testing/suite.dart ('k') | pkg/front_end/test/subpackage_relationships_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698