Type Alias litcheck_filecheck::parse::Lexed
source · pub type Lexed<'input> = Result<(usize, Token<'input>, usize), ParserError>;
Expand description
The value produced by the Lexer when iterated
Aliased Type§
enum Lexed<'input> {
Ok((usize, Token<'input>, usize)),
Err(ParserError),
}