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

Unified Diff: sdk/lib/html/src/CssClassSet.dart

Issue 11414069: Make mappedBy lazy. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error. Created 8 years, 1 month 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: sdk/lib/html/src/CssClassSet.dart
diff --git a/sdk/lib/html/src/CssClassSet.dart b/sdk/lib/html/src/CssClassSet.dart
index 38d49674eeafea234a390d44e657717403c8c8a4..4843da90ca44f6b5991155856ad17e0b7cf3fb7a 100644
--- a/sdk/lib/html/src/CssClassSet.dart
+++ b/sdk/lib/html/src/CssClassSet.dart
@@ -40,7 +40,7 @@ abstract class CssClassSet implements Set<String> {
readClasses().forEach(f);
}
- Collection mappedBy(f(String element)) => readClasses().mappedBy(f);
+ Iterable mappedBy(f(String element)) => readClasses().mappedBy(f);
Collection<String> where(bool f(String element)) => readClasses().where(f);

Powered by Google App Engine
This is Rietveld 408576698