46 lines
1.0 KiB
Rust
Raw Normal View History

2018-01-09 23:32:18 +03:00
use super::*;
2018-01-30 22:53:19 +03:00
pub(super) fn is_path_start(p: &Parser) -> bool {
2018-01-13 13:42:19 +03:00
AnyOf(&[IDENT, SELF_KW, SUPER_KW, COLONCOLON]).is_ahead(p)
}
2018-01-30 22:53:19 +03:00
pub(super) fn use_path(p: &mut Parser) {
path(p)
}
pub(super) fn type_path(p: &mut Parser) {
path(p)
}
fn path(p: &mut Parser) {
2018-01-13 13:42:19 +03:00
if !is_path_start(p) {
2018-01-09 23:32:18 +03:00
return;
}
2018-01-20 23:25:34 +03:00
let path = p.start();
2018-01-20 21:49:58 +03:00
path_segment(p, true);
2018-01-20 23:25:34 +03:00
let mut qual = path.complete(p, PATH);
2018-01-20 21:49:58 +03:00
loop {
2018-01-28 14:33:10 +03:00
if p.at(COLONCOLON) && !items::is_use_tree_start(p.nth(1)) {
2018-01-20 23:25:34 +03:00
let path = qual.precede(p);
2018-01-20 21:49:58 +03:00
p.bump();
path_segment(p, false);
2018-01-20 23:25:34 +03:00
let path = path.complete(p, PATH);
qual = path;
2018-01-13 13:42:19 +03:00
} else {
2018-01-20 21:49:58 +03:00
break;
2018-01-13 13:42:19 +03:00
}
2018-01-20 21:49:58 +03:00
}
2018-01-09 23:32:18 +03:00
}
fn path_segment(p: &mut Parser, first: bool) {
2018-01-20 23:25:34 +03:00
let segment = p.start();
2018-01-20 21:49:58 +03:00
if first {
p.eat(COLONCOLON);
}
match p.current() {
2018-01-28 14:58:01 +03:00
IDENT | SELF_KW | SUPER_KW => p.bump(),
_ => p.error().message("expected identifier").emit(),
2018-01-20 21:49:58 +03:00
};
2018-01-20 23:25:34 +03:00
segment.complete(p, PATH_SEGMENT);
2018-01-20 21:49:58 +03:00
}