forked from AbleScript/ablescript
21 lines
382 B
Rust
21 lines
382 B
Rust
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,
|
|
}
|
|
|
|
impl Error {
|
|
pub fn panic(&self, span: &str) {
|
|
println!("{:?} occured at {:?}", self.kind, self.position);
|
|
println!(" {}", &span);
|
|
}
|
|
}
|