1use smol_str::SmolStr; 2use text_size::TextRange; 3 4use crate::SyntaxKind; 5 6#[derive(Debug, Clone, PartialEq, Eq)] 7pub struct LexToken { 8 pub kind: SyntaxKind, 9 pub text: SmolStr, 10 pub range: TextRange, 11}