Enum rurtle::lex::LexError
[−]
[src]
pub enum LexError { UnterminatedString(u32), InvalidNumber(u32, String), UnexpectedCharacter(u32, char), }
Errors that may arise when lexing the input. The first member is always the line number.
Variants
UnterminatedString | Unterminated string/closing quotes missing |
InvalidNumber | Invalid number literal |
UnexpectedCharacter |