git.delta.rocks / jrsonnet / refs/commits / 94c438bdfffb

difftreelog

source

crates/jrsonnet-lexer/src/lib.rs250 Bsourcehistory
1mod generated;2mod lex;3mod string_block;45#[derive(Clone, Copy, Debug)]6pub struct Span(pub u32, pub u32);78pub use generated::syntax_kinds::SyntaxKind;9pub use lex::{Lexeme, Lexer};10pub use string_block::{collect_lexed_str_block, CollectStrBlock};