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

Unified Diff: samples/swarm/swarm_ui_lib/observable/observable.dart

Issue 12086062: Rename mappedBy to map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Undo change to test-script. Created 7 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 | « samples/swarm/swarm_ui_lib/layout/GridLayout.dart ('k') | samples/third_party/dromaeo/Suites.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/swarm/swarm_ui_lib/observable/observable.dart
diff --git a/samples/swarm/swarm_ui_lib/observable/observable.dart b/samples/swarm/swarm_ui_lib/observable/observable.dart
index 9403e3c2307368ebd4fe20dc0c6a23e8da1dfa56..2f72fa5123853a1dae566e31d617f829459fc8e5 100644
--- a/samples/swarm/swarm_ui_lib/observable/observable.dart
+++ b/samples/swarm/swarm_ui_lib/observable/observable.dart
@@ -283,7 +283,8 @@ class ObservableList<T>
// Collection<T>:
Iterable<T> where(bool f(T element)) => _internal.where(f);
- Iterable mappedBy(f(T element)) => _internal.mappedBy(f);
+ Iterable map(f(T element)) => _internal.map(f);
+ List mappedBy(f(T element)) => _internal.mappedBy(f);
List<T> skip(int count) => _internal.skip(count);
List<T> take(int count) => _internal.take(count);
bool every(bool f(T element)) => _internal.every(f);
« no previous file with comments | « samples/swarm/swarm_ui_lib/layout/GridLayout.dart ('k') | samples/third_party/dromaeo/Suites.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698