Chromium Code Reviews| Index: utils/pub/utils.dart |
| diff --git a/utils/pub/utils.dart b/utils/pub/utils.dart |
| index 1b4d93fce182df2dc4c485fac23656136d0f83cf..d730ea77de7d20b71a39862d695bfbd0813ab2ab 100644 |
| --- a/utils/pub/utils.dart |
| +++ b/utils/pub/utils.dart |
| @@ -55,7 +55,7 @@ always(Future future, fn()) { |
| /** |
| * Flattens nested lists into a single list containing only non-list elements. |
| */ |
| -List flatten(List nested) { |
| +List flatten(Iterable nested) { |
| var result = []; |
| helper(list) { |
| for (var element in list) { |