summaryrefslogtreecommitdiff
path: root/support/texlab/crates/syntax/src/bibtex.rs
blob: 97ff6f6150dbd2e468a9e3d52c8a1ceacb240374 (plain)
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
mod cst;
mod kind;

pub use self::{
    cst::*,
    kind::SyntaxKind::{self, *},
};

#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash)]
pub enum BibtexLanguage {}

impl rowan::Language for BibtexLanguage {
    type Kind = SyntaxKind;

    fn kind_from_raw(raw: rowan::SyntaxKind) -> Self::Kind {
        assert!(raw.0 <= ROOT as u16);
        unsafe { std::mem::transmute::<u16, SyntaxKind>(raw.0) }
    }

    fn kind_to_raw(kind: Self::Kind) -> rowan::SyntaxKind {
        kind.into()
    }
}

pub type SyntaxNode = rowan::SyntaxNode<BibtexLanguage>;

pub type SyntaxToken = rowan::SyntaxToken<BibtexLanguage>;

pub type SyntaxElement = rowan::SyntaxElement<BibtexLanguage>;