| Index: pkg/yaml/lib/yaml.dart
|
| diff --git a/pkg/yaml/lib/yaml.dart b/pkg/yaml/lib/yaml.dart
|
| index f59719d638066f1a1fc3d93472f65bef81404095..cfc3977426b17d72fc727e0a7a4d35e6403d65b7 100644
|
| --- a/pkg/yaml/lib/yaml.dart
|
| +++ b/pkg/yaml/lib/yaml.dart
|
| @@ -69,5 +69,5 @@ YamlList loadYamlStream(String yaml, {String sourceName}) {
|
| var nodes = pair.first
|
| .map((doc) => new Constructor(new Composer(doc).compose()).construct())
|
| .toList();
|
| - return new YamlList(nodes, pair.last);
|
| + return new YamlList.internal(nodes, pair.last);
|
| }
|
|
|