floitsch@google.com
2013-02-15 13:57:18 +00:00
parent ad839e6957
commit 0672317bec
26 changed files with 9 additions and 352 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
// TODO(jmesserly): we might want a version of this that return an iterable,
// however JS, Python and Ruby versions are all eager.
List mappedBy(Iterable source, mapper(source)) {
List map(Iterable source, mapper(source)) {
List result = new List();
if (source is List) {
List list = source; // TODO: shouldn't need this