able-script/src/error.rs

15 lines
242 B
Rust
Raw Normal View History

use std::ops::Range;
#[derive(Debug, Clone)]
pub struct Error {
pub kind: ErrorKind,
pub position: Range<usize>,
}
#[derive(Debug, Clone)]
pub enum ErrorKind {
SyntaxError(String),
EndOfTokenStream,
InvalidIdentifier,
2021-04-27 11:48:56 +00:00
}