summaryrefslogtreecommitdiff
path: root/src/error.rs
blob: a2b6d96a566a42ed307b5307cce9cb9df82c1b56 (plain)
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
40
41
42
43
44
45

use core::error::Error;
use std::fmt;

use crate::position::*;

#[derive(Debug)]
pub struct CrimError {
    position: Position,
    what: String,
}

impl CrimError {
    pub fn new( position: Position, what: String ) -> Self {
        CrimError {
            position,
            what,
        }
    }

    pub fn eos( context: &str ) -> Self {
        CrimError {
            position: Position::none(),
            what: format!("Premature end of stream while looking for {}", context),
        }
    }

    pub fn what(&self) -> &str {
        &self.what
    }

    pub fn start(&self) -> &Position {
        &self.position
    }
}

impl fmt::Display for CrimError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "Error parsing input: {}", "yeah")
    }
}

impl Error for CrimError { }

pub type CrimResult<T> = Result<T, CrimError>;