2018-01-09 14:32:18 -06:00
|
|
|
use super::*;
|
|
|
|
|
2018-08-24 12:50:37 -05:00
|
|
|
pub(super) const PATH_FIRST: TokenSet =
|
2018-09-29 06:53:23 -05:00
|
|
|
token_set![IDENT, SELF_KW, SUPER_KW, CRATE_KW, COLONCOLON, L_ANGLE];
|
2018-08-24 12:50:37 -05:00
|
|
|
|
2018-01-30 13:53:19 -06:00
|
|
|
pub(super) fn is_path_start(p: &Parser) -> bool {
|
2018-02-11 04:13:06 -06:00
|
|
|
match p.current() {
|
2018-09-29 06:53:23 -05:00
|
|
|
IDENT | SELF_KW | SUPER_KW | CRATE_KW | COLONCOLON => true,
|
2018-02-11 04:13:06 -06:00
|
|
|
_ => false,
|
|
|
|
}
|
2018-01-13 04:42:19 -06:00
|
|
|
}
|
|
|
|
|
2018-01-30 13:53:19 -06:00
|
|
|
pub(super) fn use_path(p: &mut Parser) {
|
2018-07-30 09:02:51 -05:00
|
|
|
path(p, Mode::Use)
|
2018-01-30 13:53:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn type_path(p: &mut Parser) {
|
2018-07-30 09:02:51 -05:00
|
|
|
path(p, Mode::Type)
|
2018-01-30 13:53:19 -06:00
|
|
|
}
|
|
|
|
|
2018-07-30 09:02:51 -05:00
|
|
|
pub(super) fn expr_path(p: &mut Parser) {
|
|
|
|
path(p, Mode::Expr)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Eq, PartialEq)]
|
2018-07-31 07:40:40 -05:00
|
|
|
enum Mode {
|
|
|
|
Use,
|
|
|
|
Type,
|
|
|
|
Expr,
|
|
|
|
}
|
2018-07-30 09:02:51 -05:00
|
|
|
|
|
|
|
fn path(p: &mut Parser, mode: Mode) {
|
2018-01-20 14:25:34 -06:00
|
|
|
let path = p.start();
|
2018-07-30 09:02:51 -05:00
|
|
|
path_segment(p, mode, true);
|
2018-01-20 14:25:34 -06:00
|
|
|
let mut qual = path.complete(p, PATH);
|
2018-01-20 12:49:58 -06:00
|
|
|
loop {
|
2018-02-02 13:21:06 -06:00
|
|
|
let use_tree = match p.nth(1) {
|
|
|
|
STAR | L_CURLY => true,
|
|
|
|
_ => false,
|
|
|
|
};
|
|
|
|
if p.at(COLONCOLON) && !use_tree {
|
2018-01-20 14:25:34 -06:00
|
|
|
let path = qual.precede(p);
|
2018-01-20 12:49:58 -06:00
|
|
|
p.bump();
|
2018-07-30 09:02:51 -05:00
|
|
|
path_segment(p, mode, false);
|
2018-01-20 14:25:34 -06:00
|
|
|
let path = path.complete(p, PATH);
|
|
|
|
qual = path;
|
2018-01-13 04:42:19 -06:00
|
|
|
} else {
|
2018-01-20 12:49:58 -06:00
|
|
|
break;
|
2018-01-13 04:42:19 -06:00
|
|
|
}
|
2018-01-20 12:49:58 -06:00
|
|
|
}
|
2018-01-09 14:32:18 -06:00
|
|
|
}
|
|
|
|
|
2018-07-30 09:02:51 -05:00
|
|
|
fn path_segment(p: &mut Parser, mode: Mode, first: bool) {
|
2018-08-13 15:54:00 -05:00
|
|
|
let m = p.start();
|
|
|
|
// test qual_paths
|
|
|
|
// type X = <A as B>::Output;
|
|
|
|
// fn foo() { <usize as Default>::default(); }
|
|
|
|
if first && p.eat(L_ANGLE) {
|
|
|
|
types::type_(p);
|
|
|
|
if p.eat(AS_KW) {
|
|
|
|
if is_path_start(p) {
|
|
|
|
types::path_type(p);
|
|
|
|
} else {
|
|
|
|
p.error("expected a trait");
|
|
|
|
}
|
2018-07-31 07:40:40 -05:00
|
|
|
}
|
2018-08-13 15:54:00 -05:00
|
|
|
p.expect(R_ANGLE);
|
|
|
|
} else {
|
|
|
|
if first {
|
|
|
|
p.eat(COLONCOLON);
|
2018-02-09 13:55:50 -06:00
|
|
|
}
|
2018-08-13 15:54:00 -05:00
|
|
|
match p.current() {
|
|
|
|
IDENT => {
|
|
|
|
name_ref(p);
|
2018-08-23 18:14:10 -05:00
|
|
|
opt_path_type_args(p, mode);
|
2018-08-13 15:54:00 -05:00
|
|
|
}
|
2018-09-29 06:53:23 -05:00
|
|
|
// test crate_path
|
|
|
|
// use crate::foo;
|
|
|
|
SELF_KW | SUPER_KW | CRATE_KW => p.bump(),
|
2018-08-13 15:54:00 -05:00
|
|
|
_ => {
|
|
|
|
p.err_and_bump("expected identifier");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
m.complete(p, PATH_SEGMENT);
|
2018-01-20 12:49:58 -06:00
|
|
|
}
|
2018-07-30 09:02:51 -05:00
|
|
|
|
2018-08-23 18:14:10 -05:00
|
|
|
fn opt_path_type_args(p: &mut Parser, mode: Mode) {
|
2018-07-30 09:02:51 -05:00
|
|
|
match mode {
|
|
|
|
Mode::Use => return,
|
2018-08-08 06:43:14 -05:00
|
|
|
Mode::Type => {
|
|
|
|
// test path_fn_trait_args
|
|
|
|
// type F = Box<Fn(x: i32) -> ()>;
|
|
|
|
if p.at(L_PAREN) {
|
2018-08-08 10:34:26 -05:00
|
|
|
params::param_list_opt_patterns(p);
|
2018-08-23 18:14:10 -05:00
|
|
|
opt_fn_ret_type(p);
|
2018-08-08 06:43:14 -05:00
|
|
|
} else {
|
2018-08-23 18:14:10 -05:00
|
|
|
type_args::opt_type_arg_list(p, false)
|
2018-08-08 06:43:14 -05:00
|
|
|
}
|
|
|
|
},
|
2018-08-23 18:14:10 -05:00
|
|
|
Mode::Expr => type_args::opt_type_arg_list(p, true),
|
2018-07-30 09:02:51 -05:00
|
|
|
}
|
|
|
|
}
|