petitparser_examples 6.0.1 copy "petitparser_examples: ^6.0.1" to clipboard
petitparser_examples: ^6.0.1 copied to clipboard

A collection of example parsers, applications, and benchmarks that illustrate the PetitParser framework.

example/README.md

PetitParser Examples #

Pub Package Build Status Code Coverage GitHub Issues GitHub Forks GitHub Stars GitHub License

This package contains examples to illustrate the use of PetitParser. A tutorial and full documentation is contained in the package description and API documentation. petitparser.github.io contains more information about PetitParser, running examples in the browser, and links to ports to other languages.

Examples #

BibTeX #

A simple parser that reads a BibTeX file into a list of BibTeX entries with a list of fields.

Dart #

This example contains the grammar of the Dart programming language. This is based on an early Dart 1.0 grammar specification and unfortunately does not support all valid Dart programs yet.

JSON #

This example contains a complete implementation of JSON. It is a simple grammar that can be used for benchmarking with the native implementation.

Lisp #

This example contains a simple grammar and evaluator for LISP. The code is reasonably complete to run and evaluate complex programs. Binaries for a Read–Eval–Print Loop (REPL) are provided for the console and the web browser.

dart run bin/lisp/lisp.dart

Math #

This example contains a simple evaluator for mathematical expressions, it builds a parse-tree that can then be used to print or evaluate expressions.

Prolog #

This example contains a simple grammar and evaluator for Prolog programs. The code is reasonably complete to run and evaluate basic prolog programs. Binaries for a Read–Eval–Print Loop (REPL) are provided for the console and the web browser.

dart run bin/prolog/prolog.dart

Smalltalk #

This example contains a complete implementation of the Smalltalk grammar. This is a verbatim export of a grammar that was originally developed for the PetitParser infrastructure in Smalltalk and that was the base of the Helvetia Language Workbench.

URI #

This is a simple grammar that takes an URL string and decomposes it into scheme, authority (including username, password, hostname, and port), path, query (including parameters as key-value pairs), and fragment.

XML #

This examples parses XML files to events, creates and pretty-prints a DOM tree, and evaluates XPath expressions. Depends on xml package.

Web #

To run the web examples execute the following commands from the command line and navigate to http://localhost:8080/:

dart pub global activate webdev
webdev serve --release

Benchmarks #

To run the benchmarks execute the following command from the command line:

ls -1 bin/benchmark/*.dart | xargs -n 1 dart run --no-enable-asserts
5
likes
120
pub points
0%
popularity

Publisher

verified publisherlukas-renggli.ch

A collection of example parsers, applications, and benchmarks that illustrate the PetitParser framework.

Homepage
Repository (GitHub)
View/report issues

Topics

#grammar #parser #parser-combinator #parsing #peg

Documentation

API reference

License

MIT (LICENSE)

Dependencies

collection, data, http, meta, more, petitparser, xml

More

Packages that depend on petitparser_examples