kdl 1.0.1 copy "kdl: ^1.0.1" to clipboard
kdl: ^1.0.1 copied to clipboard

Dart implementation of the KDL Document Language

KDL #

Actions Status

This is a Dart implementation of the KDL Document Language

Usage #

import 'package:kdl/kdl.dart';

main() {
  var document = Kdl.parseDocument(someString);
}

You can optionally provide your own type annotation handlers:

KDL.parseDocument(someString, typeParsers: {
  'foo': (value, type) {
    return Foo(value.value, type: type)
  },
});

The foo function will be called with instances of KdlValue or KdlNode with the type annotation (foo).

Parsers are expected to take the KdlValue or KdlNode, and the type annotation itself, as arguments, and is expected to return either an instance of KdlValue or KdlNode (depending on the input type) or null to return the original value as is. Take a look at the built in parsers as a reference.

Run the tests #

To run the full test suite:

dart test

To run a single test file:

dart test test/parser_test.dart

Contributing #

Bug reports and pull requests are welcome on GitHub at https://github.com/danini-the-panini/kdl-dart.

License #

The gem is available as open source under the terms of the MIT License.

2
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Dart implementation of the KDL Document Language

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

big_decimal, string_scanner

More

Packages that depend on kdl