about summary refs log blame commit diff
path: root/users/tazjin/rlox/src/errors.rs
blob: 9ea303829e7ef106d75ca234049b2732ed80f731 (plain) (tree)
1
2
3
4
5
6


                         
                       
                    
                               







                        

                                                           
 
#[derive(Debug)]
pub enum ErrorKind {
    UnexpectedChar(char),
    UnterminatedString,
    UnmatchedParens,
    ExpectedExpression(String),
}

#[derive(Debug)]
pub struct Error {
    pub line: usize,
    pub kind: ErrorKind,
}

pub fn report(err: &Error) {
    eprintln!("[line {}] Error: {:?}", err.line, err.kind);
}