pub type PreprocessorItem = Result<Token, (PreprocessorError, Location)>;Aliased Type§
pub enum PreprocessorItem {
Ok(Token),
Err((PreprocessorError, Location)),
}Variants§
Ok(Token)
Contains the success value
Err((PreprocessorError, Location))
Contains the error value