Use diagnostic.severity to distinguish between error colors.

This commit is contained in:
Blaž Hrastnik 2021-03-11 16:31:49 +09:00
parent c7ccb432ef
commit 9dcfe25e4a
5 changed files with 43 additions and 6 deletions

View file

@ -1,7 +1,15 @@
use crate::Range;
pub enum Severity {
Error,
Warning,
Info,
Hint,
}
pub struct Diagnostic {
pub range: (usize, usize),
pub line: usize,
pub message: String,
pub severity: Option<Severity>,
}