Enum parol_runtime::LexerError
source · pub enum LexerError {
DataError(&'static str),
PredictionError {
cause: String,
},
TokenBufferEmptyError,
InternalError(String),
LookaheadExceedsMaximum,
LookaheadExceedsTokenBufferLength,
ScannerStackEmptyError,
}Variants§
DataError(&'static str)
PredictionError
TokenBufferEmptyError
InternalError(String)
LookaheadExceedsMaximum
LookaheadExceedsTokenBufferLength
ScannerStackEmptyError
Trait Implementations§
source§impl Debug for LexerError
impl Debug for LexerError
source§impl Display for LexerError
impl Display for LexerError
source§impl Error for LexerError
impl Error for LexerError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<LexerError> for ParolError
impl From<LexerError> for ParolError
source§fn from(source: LexerError) -> Self
fn from(source: LexerError) -> Self
Converts to this type from the input type.