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
use proc_macro2::Span;
use crate::diagnostic::{Level, Diagnostic};
macro_rules! diagnostic_def {
($name:ident) => (
fn $name<T: Into<String>>(self, message: T) -> Diagnostic;
)
}
pub trait SpanDiagnosticExt {
diagnostic_def!(error);
diagnostic_def!(warning);
diagnostic_def!(note);
diagnostic_def!(help);
}
macro_rules! diagnostic_method {
($name:ident, $level:expr) => (
fn $name<T: Into<String>>(self, message: T) -> Diagnostic {
Diagnostic::spanned(self, $level, message)
}
)
}
impl SpanDiagnosticExt for Span {
diagnostic_method!(error, Level::Error);
diagnostic_method!(warning, Level::Warning);
diagnostic_method!(note, Level::Note);
diagnostic_method!(help, Level::Help);
}