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

Unified Diff: test/generated_sdk/lib/internal/iterable.dart

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix Created 5 years, 8 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: test/generated_sdk/lib/internal/iterable.dart
diff --git a/test/generated_sdk/lib/internal/iterable.dart b/test/generated_sdk/lib/internal/iterable.dart
index a5c2519092d702ff6a2d1b1e4060ab5063fe993f..0262927a192464c63fddc13fd7d6adcc9a465b85 100644
--- a/test/generated_sdk/lib/internal/iterable.dart
+++ b/test/generated_sdk/lib/internal/iterable.dart
@@ -740,9 +740,9 @@ class EmptyIterable<E> extends IterableBase<E> implements EfficientLength {
Iterable<E> takeWhile(bool test(E element)) => this;
- List toList({ bool growable: true }) => growable ? <E>[] : new List<E>(0);
+ List<E> toList({ bool growable: true }) => growable ? <E>[] : new List<E>(0);
- Set toSet() => new Set<E>();
+ Set<E> toSet() => new Set<E>();
}
/** The always empty iterator. */

Powered by Google App Engine
This is Rietveld 408576698