aboutsummaryrefslogtreecommitdiff
path: root/src/parser/mod.rs
blob: f17ffbf3aa394ee6071497d45df17300f487bb36 (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
use {File, SyntaxKind, Token};

use syntax_kinds::*;

#[macro_use]
mod parser;
mod event;
mod grammar;
use self::event::Event;

/// Parse a sequence of tokens into the representative node tree
pub fn parse(text: String, tokens: &[Token]) -> File {
    let events = {
        let mut parser = parser::Parser::new(&text, tokens);
        grammar::file(&mut parser);
        parser.into_events()
    };
    event::to_file(text, tokens, events)
}

fn is_insignificant(kind: SyntaxKind) -> bool {
    match kind {
        WHITESPACE | COMMENT => true,
        _ => false,
    }
}