Total mess but it works: diagnostic marking.

This commit is contained in:
Blaž Hrastnik 2020-10-20 15:42:53 +09:00
parent f9bfba4d96
commit 49254d7180
4 changed files with 91 additions and 6 deletions

View file

@ -1 +1,7 @@
pub struct Diagnostic {}
use crate::Range;
pub struct Diagnostic {
pub range: (usize, usize),
pub line: usize,
pub message: String,
}