rust/src/parser/event_parser/grammar.rs

139 lines
2.8 KiB
Rust
Raw Normal View History

2018-01-01 14:05:46 +01:00
use super::parser::Parser;
2018-01-06 19:54:55 +01:00
use {SyntaxKind};
2018-01-01 14:05:46 +01:00
use syntax_kinds::*;
2018-01-01 16:58:46 +01:00
// Items //
2018-01-01 15:21:53 +01:00
pub fn file(p: &mut Parser) {
2018-01-06 19:54:55 +01:00
node(p, FILE, |p| {
shebang(p);
inner_attributes(p);
2018-01-07 12:56:08 +01:00
many(p, |p| {
skip_to_first(
p, item_first, item,
"expected item",
)
});
2018-01-06 19:54:55 +01:00
})
2018-01-01 16:58:46 +01:00
}
fn shebang(_: &mut Parser) {
//TODO
}
fn inner_attributes(_: &mut Parser) {
//TODO
}
2018-01-06 19:54:55 +01:00
fn item_first(p: &Parser) -> bool {
match p.current() {
Some(STRUCT_KW) => true,
_ => false,
2018-01-01 16:58:46 +01:00
}
}
2018-01-06 19:54:55 +01:00
fn item(p: &mut Parser) {
outer_attributes(p);
visibility(p);
node_if(p, STRUCT_KW, STRUCT_ITEM, struct_item);
2018-01-01 16:58:46 +01:00
}
2018-01-06 19:54:55 +01:00
fn struct_item(p: &mut Parser) {
p.expect(IDENT)
&& p.curly_block(|p| comma_list(p, struct_field));
2018-01-06 15:16:00 +01:00
}
2018-01-06 19:54:55 +01:00
fn struct_field(p: &mut Parser) -> bool {
node_if(p, IDENT, STRUCT_FIELD, |p| {
p.expect(COLON) && p.expect(IDENT);
})
2018-01-01 21:22:01 +01:00
}
2018-01-01 16:58:46 +01:00
// Paths, types, attributes, and stuff //
2018-01-06 19:54:55 +01:00
fn outer_attributes(_: &mut Parser) {
2018-01-01 16:58:46 +01:00
}
2018-01-06 19:54:55 +01:00
fn visibility(_: &mut Parser) {
2018-01-01 16:58:46 +01:00
}
// Expressions //
// Error recovery and high-order utils //
2018-01-06 19:54:55 +01:00
fn node_if<F: FnOnce(&mut Parser)>(p: &mut Parser, first: SyntaxKind, node_kind: SyntaxKind, rest: F) -> bool {
p.current_is(first) && { node(p, node_kind, |p| { p.bump(); rest(p); }); true }
2018-01-01 16:58:46 +01:00
}
2018-01-06 19:54:55 +01:00
fn node<F: FnOnce(&mut Parser)>(p: &mut Parser, node_kind: SyntaxKind, rest: F) {
p.start(node_kind);
rest(p);
2018-01-01 14:05:46 +01:00
p.finish();
2018-01-06 15:16:00 +01:00
}
2018-01-06 19:54:55 +01:00
fn many<F: Fn(&mut Parser) -> bool>(p: &mut Parser, f: F) {
while f(p) { }
2018-01-06 15:16:00 +01:00
}
2018-01-06 19:54:55 +01:00
fn comma_list<F: Fn(&mut Parser) -> bool>(p: &mut Parser, f: F) {
many(p, |p| {
f(p);
2018-01-07 10:32:29 +01:00
if p.is_eof() {
false
} else {
p.expect(COMMA);
true
}
2018-01-06 19:54:55 +01:00
})
}
2018-01-07 12:56:08 +01:00
fn skip_to_first<C, F>(p: &mut Parser, cond: C, f: F, message: &str) -> bool
2018-01-06 19:54:55 +01:00
where
C: Fn(&Parser) -> bool,
F: FnOnce(&mut Parser),
{
2018-01-07 12:56:08 +01:00
let mut skipped = false;
2018-01-06 15:16:00 +01:00
loop {
2018-01-06 19:54:55 +01:00
if cond(p) {
2018-01-07 12:56:08 +01:00
if skipped {
p.finish();
}
2018-01-06 19:54:55 +01:00
f(p);
return true;
2018-01-06 15:16:00 +01:00
}
2018-01-07 12:56:08 +01:00
if p.is_eof() {
if skipped {
p.finish();
}
2018-01-06 19:54:55 +01:00
return false;
2018-01-06 15:16:00 +01:00
}
2018-01-07 12:56:08 +01:00
if !skipped {
p.start(ERROR);
p.error()
.message(message)
.emit();
}
p.bump().unwrap();
skipped = true;
2018-01-06 15:16:00 +01:00
}
2018-01-06 19:54:55 +01:00
}
impl<'p> Parser<'p> {
fn current_is(&self, kind: SyntaxKind) -> bool {
self.current() == Some(kind)
}
pub(crate) fn expect(&mut self, kind: SyntaxKind) -> bool {
2018-01-07 10:13:01 +01:00
if self.current_is(kind) {
self.bump();
true
} else {
self.error()
.message(format!("expected {:?}", kind))
.emit();
false
}
2018-01-06 19:54:55 +01:00
}
2018-01-01 14:05:46 +01:00
}