rust/crates/libsyntax2/src/grammar/paths.rs

87 lines
1.9 KiB
Rust
Raw Normal View History

2018-01-09 21:32:18 +01:00
use super::*;
2018-01-30 20:53:19 +01:00
pub(super) fn is_path_start(p: &Parser) -> bool {
2018-02-11 11:13:06 +01:00
match p.current() {
IDENT | SELF_KW | SUPER_KW | COLONCOLON => true,
_ => false,
}
2018-01-13 11:42:19 +01:00
}
2018-01-30 20:53:19 +01:00
pub(super) fn use_path(p: &mut Parser) {
2018-07-30 16:02:51 +02:00
path(p, Mode::Use)
2018-01-30 20:53:19 +01:00
}
pub(super) fn type_path(p: &mut Parser) {
2018-07-30 16:02:51 +02:00
path(p, Mode::Type)
2018-01-30 20:53:19 +01:00
}
2018-07-30 16:02:51 +02:00
pub(super) fn expr_path(p: &mut Parser) {
path(p, Mode::Expr)
}
#[derive(Clone, Copy, Eq, PartialEq)]
2018-07-31 14:40:40 +02:00
enum Mode {
Use,
Type,
Expr,
}
2018-07-30 16:02:51 +02:00
fn path(p: &mut Parser, mode: Mode) {
2018-01-13 11:42:19 +01:00
if !is_path_start(p) {
2018-01-09 21:32:18 +01:00
return;
}
2018-01-20 21:25:34 +01:00
let path = p.start();
2018-07-30 16:02:51 +02:00
path_segment(p, mode, true);
2018-01-20 21:25:34 +01:00
let mut qual = path.complete(p, PATH);
2018-01-20 19:49:58 +01:00
loop {
let use_tree = match p.nth(1) {
STAR | L_CURLY => true,
_ => false,
};
if p.at(COLONCOLON) && !use_tree {
2018-01-20 21:25:34 +01:00
let path = qual.precede(p);
2018-01-20 19:49:58 +01:00
p.bump();
2018-07-30 16:02:51 +02:00
path_segment(p, mode, false);
2018-01-20 21:25:34 +01:00
let path = path.complete(p, PATH);
qual = path;
2018-01-13 11:42:19 +01:00
} else {
2018-01-20 19:49:58 +01:00
break;
2018-01-13 11:42:19 +01:00
}
2018-01-20 19:49:58 +01:00
}
2018-01-09 21:32:18 +01:00
}
2018-07-30 16:02:51 +02:00
fn path_segment(p: &mut Parser, mode: Mode, first: bool) {
2018-01-20 21:25:34 +01:00
let segment = p.start();
2018-01-20 19:49:58 +01:00
if first {
p.eat(COLONCOLON);
}
match p.current() {
2018-07-30 16:02:51 +02:00
IDENT => {
name_ref(p);
path_generic_args(p, mode);
2018-07-31 14:40:40 +02:00
}
2018-02-10 12:17:38 +01:00
SELF_KW | SUPER_KW => p.bump(),
2018-02-09 20:44:50 +01:00
_ => {
p.error("expected identifier");
2018-02-09 20:55:50 +01:00
}
2018-01-20 19:49:58 +01:00
};
2018-01-20 21:25:34 +01:00
segment.complete(p, PATH_SEGMENT);
2018-01-20 19:49:58 +01:00
}
2018-07-30 16:02:51 +02:00
fn path_generic_args(p: &mut Parser, mode: Mode) {
match mode {
Mode::Use => return,
2018-08-08 13:43:14 +02:00
Mode::Type => {
// test path_fn_trait_args
// type F = Box<Fn(x: i32) -> ()>;
if p.at(L_PAREN) {
2018-08-08 17:34:26 +02:00
params::param_list_opt_patterns(p);
2018-08-08 13:43:14 +02:00
fn_ret_type(p);
} else {
type_args::type_arg_list(p, false)
}
},
2018-07-31 22:16:07 +02:00
Mode::Expr => type_args::type_arg_list(p, true),
2018-07-30 16:02:51 +02:00
}
}