lex 0.15.0

This library aids in parsing programming languages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use lexer::*;
pub use rule::*;
pub use span::*;
pub use token::*;
pub use token_kind::*;

mod lexer;
mod rule;
mod span;
mod token;
mod token_kind;

pub mod matchers;