1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use super::lexer::Token;
use std::result;

pub type Result<T> = result::Result<T, Error>;

#[derive(Debug, PartialEq, Eq)]
pub enum ErrorType {
    UnexpectedEOF,
    Unexpected(Token),
    MissingParameter(String)
}

pub trait CodePos {
    fn location(&self) -> (u32, u16);
}

#[derive(Debug, PartialEq, Eq)]
pub struct Error {
    error_type: ErrorType,
    line: u32,
    col: u16,
    expected: Option<&'static str>
}

impl Error {
    pub fn new(line: u32, col: u16, etype: ErrorType, expected: Option<&'static str>) -> Error {
        Error {
            error_type: etype,
            line: line,
            col: col,
            expected: expected
        }
    }

    pub fn from_state<T> (pos: &T, etype: ErrorType, expected: Option<&'static str>) -> Error where T: CodePos {
        let p = pos.location();
        Error::new(p.0, p.1, etype, expected)
    }
}