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
46
47
48
49
50
51
52
|
use core::error::Error;
use std::fmt;
use crate::position::*;
#[derive(Debug)]
pub struct CrimError {
position: Position,
what: String,
}
impl CrimError {
pub fn parse( position: Position, what: String ) -> Self {
Self {
position,
what,
}
}
pub fn other(what: String) -> Self {
Self {
position: Position::none(),
what,
}
}
pub fn eos( context: &str ) -> Self {
Self {
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>;
|