aboutsummaryrefslogtreecommitdiff
path: root/code/src/syntax_highlight/grammar.rs
blob: 95417ab72e1b6487ec63ef6a87a5fd21235b7829 (plain)
1
2
3
4
5
6
pub fn grammar_for(syntax: &str) -> &'static [(&'static [&'static str], &'static str)] {
    match syntax {
        "rs" => &[(&["fn", "pub", "async"], "keyword")],
        _ => unreachable!(),
    }
}