1mod generated;
2mod lex;
3mod string_block;
4
5#[derive(Clone, Copy, Debug)]
6pub struct Span(pub u32, pub u32);
7
8pub use generated::syntax_kinds::SyntaxKind;
9pub use lex::{Lexeme, Lexer, lex};
10pub use string_block::{CollectStrBlock, collect_lexed_str_block};