relateby-gram 0.4.2

Bidirectional codec between Gram notation and Pattern data structures
Documentation
1
2
3
4
5
6
7
8
9
//! CST parser API and foundational syntax-node types.

mod lowering;
mod parser;
mod syntax_node;

pub use lowering::lower;
pub use parser::parse_gram_cst;
pub use syntax_node::{Annotation, ArrowKind, CstParseResult, SourceSpan, SyntaxKind, SyntaxNode};