1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use crate::interface;
use std::cmp::Ordering;

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct LineColumn {
    /// 1-based line
    pub line: usize,
    /// 0-based column
    pub column: usize,
}

impl Default for LineColumn {
    fn default() -> Self {
        Self { line: 1, column: 0 }
    }
}

impl Ord for LineColumn {
    fn cmp(&self, other: &Self) -> Ordering {
        let ordering = self.line.cmp(&other.line);
        if ordering == Ordering::Equal {
            self.column.cmp(&other.column)
        } else {
            ordering
        }
    }
}

impl PartialOrd for LineColumn {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl interface::LineColumn for LineColumn {
    fn line(&self) -> usize {
        self.line
    }

    fn line_mut(&mut self) -> &mut usize {
        &mut self.line
    }

    fn column(&self) -> usize {
        self.column
    }

    fn column_mut(&mut self) -> &mut usize {
        &mut self.column
    }
}

#[derive(Clone, Copy, Debug, Default)]
pub struct Span {
    start: LineColumn,
    end: LineColumn,
}

impl Span {
    #[must_use]
    pub fn new(start: LineColumn, end: LineColumn) -> Self {
        Self { start, end }
    }
}

impl interface::Span for Span {
    type LineColumn = LineColumn;

    fn line_column(line: usize, column: usize) -> Self::LineColumn {
        LineColumn { line, column }
    }

    fn start(&self) -> LineColumn {
        self.start
    }

    fn end(&self) -> LineColumn {
        self.end
    }
}