aboutsummaryrefslogtreecommitdiff
path: root/src/syntax_kinds/mod.rs
blob: ed4fa5d4dcefad6651b750cd9b4a7e59464315f6 (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
mod generated;

use std::fmt;
use SyntaxKind::*;

pub use self::generated::SyntaxKind;

impl fmt::Debug for SyntaxKind {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let name = self.info().name;
        f.write_str(name)
    }
}

pub(crate) struct SyntaxInfo {
    pub name: &'static str,
}

impl SyntaxKind {
    pub(crate) fn is_trivia(self) -> bool {
        match self {
            WHITESPACE | COMMENT | DOC_COMMENT => true,
            _ => false,
        }
    }
}