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

Unified Diff: samples/swarm/DataSource.dart

Issue 13685004: Reduce usage of ItearbleMixinWorkaround. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix bug in set-base Created 7 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: samples/swarm/DataSource.dart
diff --git a/samples/swarm/DataSource.dart b/samples/swarm/DataSource.dart
index 662e1d55a7d92496fbf2275ca7668d5bc26f069a..dd9c6dd37c8de664b1c13ffdb3952a30a6961062 100644
--- a/samples/swarm/DataSource.dart
+++ b/samples/swarm/DataSource.dart
@@ -90,11 +90,6 @@ class Sections extends Collection<Section> {
List<Section> get sections => _sections;
- // Collection<Section> methods:
- bool every(bool f(Section element)) => IterableMixinWorkaround.every(this, f);
- bool any(bool f(Section element)) => IterableMixinWorkaround.any(this, f);
- void forEach(void f(Section element)) { IterableMixinWorkaround.forEach(this, f); }
-
// TODO(jmesserly): this should be a property
bool get isEmpty => length == 0;
}
« no previous file with comments | « pkg/serialization/lib/src/serialization_rule.dart ('k') | samples/swarm/swarm_ui_lib/observable/observable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698