aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/diagnostic.rs
blob: 96ed674628f458ad6ac2123a21e405694e7252e5 (plain) (blame)
1
2
3
4
5
6
7
use crate::Range;

pub struct Diagnostic {
    pub range: (usize, usize),
    pub line: usize,
    pub message: String,
}