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

Unified Diff: tool/input_sdk/lib/core/set.dart

Issue 1554683002: Update to latest analyzer (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « tool/input_sdk/lib/core/iterable.dart ('k') | tool/input_sdk/lib/internal/iterable.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/core/set.dart
diff --git a/tool/input_sdk/lib/core/set.dart b/tool/input_sdk/lib/core/set.dart
index 6c3ec00813017bd1dae6f66abacdf7f529a19289..bf829812520211cf906920301f86f036a340540e 100644
--- a/tool/input_sdk/lib/core/set.dart
+++ b/tool/input_sdk/lib/core/set.dart
@@ -72,7 +72,7 @@ abstract class Set<E> extends IterableBase<E> implements EfficientLength {
* The set is equivalent to one created by
* `new LinkedHashSet<E>.from(elements)`.
*/
- factory Set.from(Iterable elements) = LinkedHashSet<E>.from;
+ factory Set.from(Iterable<E> elements) = LinkedHashSet<E>.from;
/**
* Provides an iterator that iterates over the elements of this set.
« no previous file with comments | « tool/input_sdk/lib/core/iterable.dart ('k') | tool/input_sdk/lib/internal/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698