about summary refs log blame commit diff
path: root/users/tazjin/rlox/src/errors.rs
blob: 6bd922bc6c5e2ae959bc1eabbd94495f3ba14243 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


                         
                       
                    







                        

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

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

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