tecta-peg 0.2.0

PDA-based TECTA PEG parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# TECTA PEG
A simple PEG descriptor language that uses a push-down automata to parse language rules.

This crate is the reference implementation of rule parsing.

Purpose-built for TECTA.

Described in `manual.typ`.

Currently, the bin crate parses an input file and prints the interpreted result.

# TODO
- [X] Rule parsing
- [X] Library API
- [ ] Weakly-typed token parsing
- [ ] Strongly-typed token parsing (likely type generation through proc macros)