Add range type to helix stdx

This commit is contained in:
Pascal Kuthe 2024-02-22 21:47:12 +01:00 committed by Michael Davis
parent 312c64f0c2
commit db959274d4
No known key found for this signature in database
4 changed files with 123 additions and 38 deletions

View file

@ -1,6 +1,7 @@
//! LSP diagnostic utility types.
use std::fmt;
pub use helix_stdx::range::Range;
use serde::{Deserialize, Serialize};
/// Describes the severity level of a [`Diagnostic`].
@ -19,19 +20,6 @@ impl Default for Severity {
}
}
/// A range of `char`s within the text.
#[derive(Debug, Clone, Copy, PartialOrd, Ord, PartialEq, Eq)]
pub struct Range {
pub start: usize,
pub end: usize,
}
impl Range {
pub fn contains(self, pos: usize) -> bool {
(self.start..self.end).contains(&pos)
}
}
#[derive(Debug, Eq, Hash, PartialEq, Clone, Deserialize, Serialize)]
pub enum NumberOrString {
Number(i32),