Enum flycatcher_parser::error::ErrorKind [−][src]
pub enum ErrorKind {
SyntaxError,
EndOfFile,
}Expand description
A list of possible errors that may occur during parsing.
Variants
A general syntax error, if this error is thrown, it is guaranteed that the parser will have emitted a diagnostic message.
Returned when there is no tokens left in the lexer that the parser uses. The parser will not throw a diagnostic message if this error is found.