You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix-plus/helix-core/src/diagnostic.rs

19 lines
285 B
Rust

#[derive(Eq, PartialEq)]
pub enum Severity {
Error,
Warning,
Info,
Hint,
}
pub struct Range {
pub start: usize,
pub end: usize,
}
pub struct Diagnostic {
pub range: Range,
pub line: usize,
pub message: String,
pub severity: Option<Severity>,
}