Context free language parser

This crate provides functionality for parsing context-free languages and was written for use with fck. The documentation will also link you to some benchmarks. These were performed on a MacBook Pro with an M1 Pro CPU. The times are mainly intended for comparisons.

Usage

This crate provides a derive macro for the Parser trait. It also provides another trait and two structs used along-side the Parser trait.

For how to use the derive macro, you will need to read the documentation

Examples

The examples directory contains some example files with generated expansions. These are generated using cargo-expand and have been neatened up to make them more readable.

The structure of the examples is the same for all of them: 1. Two enums for TokenType and Token along with required trait impls 2. mod nodes which contains the nodes with #[derive(Parser)] 3. mod equivalent which is the expanded code for the Parser impl

Current issues