| Index: dart/utils/template/utils.dart
|
| ===================================================================
|
| --- dart/utils/template/utils.dart (revision 18634)
|
| +++ dart/utils/template/utils.dart (working copy)
|
| @@ -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
|
|
|