mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Implement Debug for data structure as a feature
This commit is contained in:
parent
aebdef8257
commit
1a3a924634
20 changed files with 83 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue