rust/src/parser/event_parser/grammar/mod.rs

111 lines
2.3 KiB
Rust
Raw Normal View History

2018-01-01 07:05:46 -06:00
use super::parser::Parser;
2018-01-06 12:54:55 -06:00
use {SyntaxKind};
2018-01-07 12:09:05 -06:00
use tree::EOF;
2018-01-01 07:05:46 -06:00
use syntax_kinds::*;
2018-01-07 12:46:10 -06:00
mod items;
mod attributes;
mod expressions;
2018-01-01 09:58:46 -06:00
2018-01-07 11:14:26 -06:00
pub(crate) fn file(p: &mut Parser) {
2018-01-06 12:54:55 -06:00
node(p, FILE, |p| {
2018-01-07 06:34:11 -06:00
p.optional(SHEBANG);
2018-01-07 12:46:10 -06:00
attributes::inner_attributes(p);
2018-01-08 12:57:19 -06:00
items::mod_items(p);
2018-01-06 12:54:55 -06:00
})
2018-01-01 09:58:46 -06:00
}
2018-01-06 12:54:55 -06:00
fn visibility(_: &mut Parser) {
2018-01-01 09:58:46 -06:00
}
2018-01-07 12:40:18 -06:00
fn node_if<F: FnOnce(&mut Parser)>(
p: &mut Parser,
first: SyntaxKind,
node_kind: SyntaxKind,
rest: F
) -> bool {
2018-01-07 12:09:05 -06:00
p.current() == first && { node(p, node_kind, |p| { p.bump(); rest(p); }); true }
2018-01-01 09:58:46 -06:00
}
2018-01-06 12:54:55 -06:00
fn node<F: FnOnce(&mut Parser)>(p: &mut Parser, node_kind: SyntaxKind, rest: F) {
p.start(node_kind);
rest(p);
2018-01-01 07:05:46 -06:00
p.finish();
2018-01-06 08:16:00 -06:00
}
2018-01-06 12:54:55 -06:00
fn many<F: Fn(&mut Parser) -> bool>(p: &mut Parser, f: F) {
while f(p) { }
2018-01-06 08:16:00 -06:00
}
2018-01-07 12:40:18 -06:00
fn comma_list<F: Fn(&mut Parser) -> bool>(p: &mut Parser, end: SyntaxKind, f: F) {
2018-01-06 12:54:55 -06:00
many(p, |p| {
2018-01-07 12:40:18 -06:00
if !f(p) || p.current() == end {
2018-01-07 03:32:29 -06:00
false
} else {
p.expect(COMMA);
true
}
2018-01-06 12:54:55 -06:00
})
}
2018-01-07 05:56:08 -06:00
fn skip_to_first<C, F>(p: &mut Parser, cond: C, f: F, message: &str) -> bool
2018-01-06 12:54:55 -06:00
where
C: Fn(&Parser) -> bool,
F: FnOnce(&mut Parser),
{
2018-01-07 05:56:08 -06:00
let mut skipped = false;
2018-01-06 08:16:00 -06:00
loop {
2018-01-06 12:54:55 -06:00
if cond(p) {
2018-01-07 05:56:08 -06:00
if skipped {
p.finish();
}
2018-01-06 12:54:55 -06:00
f(p);
return true;
2018-01-06 08:16:00 -06:00
}
2018-01-07 12:09:05 -06:00
if p.current() == EOF {
2018-01-07 05:56:08 -06:00
if skipped {
p.finish();
}
2018-01-06 12:54:55 -06:00
return false;
2018-01-06 08:16:00 -06:00
}
2018-01-07 05:56:08 -06:00
if !skipped {
p.start(ERROR);
p.error()
.message(message)
.emit();
}
2018-01-07 12:09:05 -06:00
p.bump();
2018-01-07 05:56:08 -06:00
skipped = true;
2018-01-06 08:16:00 -06:00
}
2018-01-06 12:54:55 -06:00
}
impl<'p> Parser<'p> {
pub(crate) fn expect(&mut self, kind: SyntaxKind) -> bool {
2018-01-07 12:09:05 -06:00
if self.current() == kind {
2018-01-07 03:13:01 -06:00
self.bump();
true
} else {
self.error()
.message(format!("expected {:?}", kind))
.emit();
false
}
2018-01-06 12:54:55 -06:00
}
2018-01-07 06:34:11 -06:00
2018-01-07 10:50:54 -06:00
fn optional(&mut self, kind: SyntaxKind) {
2018-01-07 12:09:05 -06:00
if self.current() == kind {
2018-01-07 06:34:11 -06:00
self.bump();
}
}
2018-01-07 10:50:54 -06:00
fn bump_n(&mut self, n: u8) {
for _ in 0..n {
self.bump();
}
}
2018-01-07 12:40:18 -06:00
fn eat(&mut self, kind: SyntaxKind) -> bool {
self.current() == kind && { self.bump(); true }
}
2018-01-01 07:05:46 -06:00
}