kodept-parse 0.3.0

Simple compiler with dependent types support in mind
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod lexer;
mod error;
mod compatibility;
mod parser;

pub use lexer::Lexer;
pub use parser::Parser;

mod macros {
    macro_rules! tok {
        ($pat:pat) => {$crate::token_match::TokenMatch { token: $pat, .. }};
    }

    pub(crate) use tok;
}