2018-01-01 07:05:46 -06:00
|
|
|
use super::parser::Parser;
|
2018-01-06 12:54:55 -06:00
|
|
|
use {SyntaxKind};
|
2018-01-01 07:05:46 -06:00
|
|
|
use syntax_kinds::*;
|
|
|
|
|
2018-01-01 09:58:46 -06:00
|
|
|
// Items //
|
|
|
|
|
2018-01-01 08:21:53 -06:00
|
|
|
pub fn file(p: &mut Parser) {
|
2018-01-06 12:54:55 -06:00
|
|
|
node(p, FILE, |p| {
|
|
|
|
shebang(p);
|
|
|
|
inner_attributes(p);
|
|
|
|
many(p, |p| skip_to_first(p, item_first, item));
|
|
|
|
})
|
2018-01-01 09:58:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn shebang(_: &mut Parser) {
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
fn inner_attributes(_: &mut Parser) {
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
|
2018-01-06 12:54:55 -06:00
|
|
|
fn item_first(p: &Parser) -> bool {
|
|
|
|
match p.current() {
|
|
|
|
Some(STRUCT_KW) => true,
|
|
|
|
_ => false,
|
2018-01-01 09:58:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-06 12:54:55 -06:00
|
|
|
fn item(p: &mut Parser) {
|
|
|
|
outer_attributes(p);
|
|
|
|
visibility(p);
|
|
|
|
node_if(p, STRUCT_KW, STRUCT_ITEM, struct_item);
|
2018-01-01 09:58:46 -06:00
|
|
|
}
|
|
|
|
|
2018-01-06 12:54:55 -06:00
|
|
|
fn struct_item(p: &mut Parser) {
|
|
|
|
p.expect(IDENT)
|
|
|
|
&& p.curly_block(|p| comma_list(p, struct_field));
|
2018-01-06 08:16:00 -06:00
|
|
|
}
|
|
|
|
|
2018-01-06 12:54:55 -06:00
|
|
|
fn struct_field(p: &mut Parser) -> bool {
|
|
|
|
node_if(p, IDENT, STRUCT_FIELD, |p| {
|
|
|
|
p.expect(COLON) && p.expect(IDENT);
|
|
|
|
})
|
2018-01-01 14:22:01 -06:00
|
|
|
}
|
2018-01-01 09:58:46 -06:00
|
|
|
|
|
|
|
// Paths, types, attributes, and stuff //
|
|
|
|
|
2018-01-06 12:54:55 -06:00
|
|
|
fn outer_attributes(_: &mut Parser) {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// Expressions //
|
|
|
|
|
|
|
|
// Error recovery and high-order utils //
|
|
|
|
|
2018-01-06 12:54:55 -06: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 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-06 12:54:55 -06:00
|
|
|
fn comma_list<F: Fn(&mut Parser) -> bool>(p: &mut Parser, f: F) {
|
|
|
|
many(p, |p| {
|
|
|
|
f(p);
|
2018-01-07 03:13:01 -06:00
|
|
|
p.is_eof() || p.expect(COMMA)
|
2018-01-06 12:54:55 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn skip_to_first<C, F>(p: &mut Parser, cond: C, f: F) -> bool
|
|
|
|
where
|
|
|
|
C: Fn(&Parser) -> bool,
|
|
|
|
F: FnOnce(&mut Parser),
|
|
|
|
{
|
2018-01-06 08:16:00 -06:00
|
|
|
loop {
|
2018-01-06 12:54:55 -06:00
|
|
|
if cond(p) {
|
|
|
|
f(p);
|
|
|
|
return true;
|
2018-01-06 08:16:00 -06:00
|
|
|
}
|
2018-01-06 12:54:55 -06:00
|
|
|
if p.bump().is_none() {
|
|
|
|
return false;
|
2018-01-06 08:16:00 -06:00
|
|
|
}
|
|
|
|
}
|
2018-01-06 12:54:55 -06: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 03:13:01 -06:00
|
|
|
if self.current_is(kind) {
|
|
|
|
self.bump();
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
self.error()
|
|
|
|
.message(format!("expected {:?}", kind))
|
|
|
|
.emit();
|
|
|
|
false
|
|
|
|
}
|
2018-01-06 12:54:55 -06:00
|
|
|
}
|
2018-01-01 07:05:46 -06:00
|
|
|
}
|