2024-01-16 22:59:34 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Copy)]
|
|
|
|
pub struct Span {
|
2024-01-17 00:04:22 +00:00
|
|
|
pub start: usize,
|
|
|
|
pub end: usize
|
2024-01-16 22:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Span {
|
2024-01-17 00:04:22 +00:00
|
|
|
pub fn new(start: usize, end: usize) -> Self {
|
2024-01-16 22:59:34 +00:00
|
|
|
Self { start, end }
|
|
|
|
}
|
|
|
|
}
|