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

Unified Diff: pkg/compiler/lib/src/helpers/debug_collection.dart

Issue 2620023002: Use elements/types in constants/values (Closed)
Patch Set: Created 3 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
Index: pkg/compiler/lib/src/helpers/debug_collection.dart
diff --git a/pkg/compiler/lib/src/helpers/debug_collection.dart b/pkg/compiler/lib/src/helpers/debug_collection.dart
index 2e053594182535a0c2b30fee02957e145b0d5e04..3ff3f49095ead3611b1024a033e45c9396b1ca9a 100644
--- a/pkg/compiler/lib/src/helpers/debug_collection.dart
+++ b/pkg/compiler/lib/src/helpers/debug_collection.dart
@@ -71,7 +71,7 @@ class DebugIterable<E> implements Iterable<E> {
Iterator<E> get iterator => iterable.iterator;
- Iterable<T> map<T>( T f(E element)) => iterable.map(f);
+ Iterable<T> map<T>(T f(E element)) => iterable.map(f);
Siggi Cherem (dart-lang) 2017/01/11 22:57:47 :)
Iterable<E> where(bool test(E element)) => iterable.where(test);

Powered by Google App Engine
This is Rietveld 408576698