| Index: utils/pub/yaml/yaml.dart
|
| diff --git a/utils/pub/yaml/yaml.dart b/utils/pub/yaml/yaml.dart
|
| index b62d673bf9412e79a321179134bba9b080d3fc6a..cd3666f7be37d06390e39c371f0eac8e487ed568 100644
|
| --- a/utils/pub/yaml/yaml.dart
|
| +++ b/utils/pub/yaml/yaml.dart
|
| @@ -44,7 +44,8 @@ loadYaml(String yaml) {
|
| */
|
| List loadYamlStream(String yaml) {
|
| return new _Parser(yaml).l_yamlStream().mappedBy((doc) =>
|
| - new _Constructor(new _Composer(doc).compose()).construct());
|
| + new _Constructor(new _Composer(doc).compose()).construct())
|
| + .toList();
|
| }
|
|
|
| /** An error thrown by the YAML processor. */
|
|
|