blob: ae7e0515a02518bebee0e7bdacd55587797bd90c (
plain) (
tree)
|
|
#[derive(Debug)]
pub enum ErrorKind {
UnexpectedChar(char),
UnterminatedString,
UnmatchedParens,
ExpectedExpression(String),
TypeError(String),
}
#[derive(Debug)]
pub struct Error {
pub line: usize,
pub kind: ErrorKind,
}
pub fn report(err: &Error) {
eprintln!("[line {}] Error: {:?}", err.line, err.kind);
}
|