dart-lang / yaml

A Dart YAML parser.
https://pub.dev/packages/yaml
MIT License
169 stars 58 forks source link

Add YAML-styled Serialization for YamlNode Family #70

Closed mehmetoguzderin closed 3 years ago

mehmetoguzderin commented 4 years ago

This pull request adds YAML-styled serialization support for YamlNode family, namely YamlScalar, YamlList, and YamlMap.

Serialization is opinionated; indentations are two-spaces per indentation level, and flow-styled nodes are single-line.

The implementation leaves out indentation on first lines for more straightforward concatenation logic and does not modify test logic because of inconsistent styling of YAML specification examples.