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