Implement Debug for data structure as a feature

This commit is contained in:
notoria 2021-06-06 17:55:05 +02:00 committed by Blaž Hrastnik
parent aebdef8257
commit 1a3a924634
20 changed files with 83 additions and 2 deletions

View file

@ -1,3 +1,4 @@
#[cfg_attr(feature = "debug", derive(Debug))]
#[derive(Eq, PartialEq)]
pub enum Severity {
Error,
@ -6,10 +7,13 @@ pub enum Severity {
Hint,
}
#[cfg_attr(feature = "debug", derive(Debug))]
pub struct Range {
pub start: usize,
pub end: usize,
}
#[cfg_attr(feature = "debug", derive(Debug))]
pub struct Diagnostic {
pub range: Range,
pub line: usize,