Skip to main content

php_lexer/
lib.rs

1pub mod lexer;
2pub mod token;
3
4pub use lexer::{Lexer, LexerError, Token};
5pub use token::TokenKind;