pattern_lexer/lib.rs
1//! Plugin based [Lexer](https://en.wikipedia.org/wiki/Lexical_analysis) implementation.
2//! We provide premade token kinds that can be customised to add better semantic.
3
4mod lexer;
5/// Module for pattern matching
6pub mod pattern;
7/// Module containing the tokens
8pub mod token;
9
10pub use lexer::Lexer;
11pub use lexer::LexerBuilder;