Skip to main content

bock_lexer/
lib.rs

1//! Bock lexer — tokenization of Bock source files into a token stream
2
3mod lexer;
4mod token;
5pub mod vocab;
6
7pub use lexer::Lexer;
8pub use token::{keyword_lookup, Token, TokenKind};