| Index: utils/template/utils.dart
|
| diff --git a/utils/template/utils.dart b/utils/template/utils.dart
|
| index ca36fc624910ba19e026fc9f8ea94e519e240962..c9b804228773885f4302ed239212885e10e5daa3 100644
|
| --- a/utils/template/utils.dart
|
| +++ b/utils/template/utils.dart
|
| @@ -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 map(Iterable source, mapper(source)) {
|
| +List mappedBy(Iterable source, mapper(source)) {
|
| List result = new List();
|
| if (source is List) {
|
| List list = source; // TODO: shouldn't need this
|
|
|