Uncomment some tests (#145) These tests had been commented out since the original commit in this repo even though most of them would pass. With these tests commented out the suite has an empty `group` which may become disallowed. https://github.com/dart-lang/test/issues/1961 Change double quotes to single quotes. Skip a test which is currently failing due to an error parsing a float value with a single digit.
A parser for YAML.
Use loadYaml to load a single document, or loadYamlStream to load a stream of documents. For example:
import 'package:yaml/yaml.dart'; main() { var doc = loadYaml("YAML: YAML Ain't Markup Language"); print(doc['YAML']); }
This library currently doesn't support dumping to YAML. You should use json.encode from dart:convert instead:
import 'dart:convert'; import 'package:yaml/yaml.dart'; main() { var doc = loadYaml("YAML: YAML Ain't Markup Language"); print(json.encode(doc)); }