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
53
54
55
mod context;
pub use context::{Context, Range};
use std::fmt;
use super::error::PolarError;
use super::warning::PolarWarning;
#[derive(Debug)]
pub enum Diagnostic {
Error(PolarError),
Warning(PolarWarning),
}
impl Diagnostic {
pub fn is_error(&self) -> bool {
matches!(self, Diagnostic::Error(_))
}
pub fn is_unrecoverable(&self) -> bool {
use super::error::{
ErrorKind::{Parse, Validation},
ValidationError::{FileLoading, ResourceBlock},
};
matches!(
self,
Diagnostic::Error(PolarError {
kind: Parse(_) | Validation(FileLoading { .. }) | Validation(ResourceBlock { .. }),
..
})
)
}
pub fn kind(&self) -> String {
match self {
Diagnostic::Error(e) => e.kind(),
Diagnostic::Warning(w) => w.kind(),
}
}
}
impl fmt::Display for Diagnostic {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match &self {
Diagnostic::Error(e) => write!(f, "{}", e)?,
Diagnostic::Warning(w) => write!(f, "{}", w)?,
}
Ok(())
}
}