helix-mods/helix-core/src/diagnostic.rs

8 lines
122 B
Rust
Raw Normal View History

use crate::Range;
pub struct Diagnostic {
pub range: (usize, usize),
pub line: usize,
pub message: String,
}