2019-12-13 12:12:36 +01:00
|
|
|
//! Transforms syntax into `Path` objects, ideally with accounting for hygiene
|
|
|
|
|
2021-05-06 23:23:50 +02:00
|
|
|
use crate::intern::Interned;
|
2019-12-13 12:12:36 +01:00
|
|
|
|
|
|
|
use either::Either;
|
2021-04-10 17:49:12 +02:00
|
|
|
use hir_expand::name::{name, AsName};
|
2021-09-27 12:54:24 +02:00
|
|
|
use syntax::ast::{self, AstNode, HasTypeBounds};
|
2019-12-13 12:12:36 +01:00
|
|
|
|
2020-04-10 22:05:46 +02:00
|
|
|
use super::AssociatedTypeBinding;
|
2019-12-13 12:12:36 +01:00
|
|
|
use crate::{
|
2020-04-30 18:20:13 +08:00
|
|
|
body::LowerCtx,
|
2019-12-13 12:12:36 +01:00
|
|
|
path::{GenericArg, GenericArgs, ModPath, Path, PathKind},
|
2020-12-11 13:49:32 +01:00
|
|
|
type_ref::{LifetimeRef, TypeBound, TypeRef},
|
2019-12-13 12:12:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Converts an `ast::Path` to `Path`. Works with use trees.
|
|
|
|
/// It correctly handles `$crate` based path from macro call.
|
2021-05-06 23:23:50 +02:00
|
|
|
pub(super) fn lower_path(mut path: ast::Path, ctx: &LowerCtx) -> Option<Path> {
|
2019-12-13 12:12:36 +01:00
|
|
|
let mut kind = PathKind::Plain;
|
2019-12-18 17:41:33 +01:00
|
|
|
let mut type_anchor = None;
|
2019-12-13 12:12:36 +01:00
|
|
|
let mut segments = Vec::new();
|
|
|
|
let mut generic_args = Vec::new();
|
2021-04-10 17:49:12 +02:00
|
|
|
let hygiene = ctx.hygiene();
|
2019-12-13 12:12:36 +01:00
|
|
|
loop {
|
|
|
|
let segment = path.segment()?;
|
|
|
|
|
2020-04-09 18:25:36 +02:00
|
|
|
if segment.coloncolon_token().is_some() {
|
2019-12-13 12:12:36 +01:00
|
|
|
kind = PathKind::Abs;
|
|
|
|
}
|
|
|
|
|
|
|
|
match segment.kind()? {
|
|
|
|
ast::PathSegmentKind::Name(name_ref) => {
|
|
|
|
// FIXME: this should just return name
|
2021-05-06 23:23:50 +02:00
|
|
|
match hygiene.name_ref_to_name(ctx.db.upcast(), name_ref) {
|
2019-12-13 12:12:36 +01:00
|
|
|
Either::Left(name) => {
|
|
|
|
let args = segment
|
2020-07-31 18:29:29 +02:00
|
|
|
.generic_arg_list()
|
2021-04-10 17:49:12 +02:00
|
|
|
.and_then(|it| lower_generic_args(ctx, it))
|
2019-12-13 12:12:36 +01:00
|
|
|
.or_else(|| {
|
|
|
|
lower_generic_args_from_fn_path(
|
2021-04-10 17:49:12 +02:00
|
|
|
ctx,
|
2019-12-13 12:12:36 +01:00
|
|
|
segment.param_list(),
|
|
|
|
segment.ret_type(),
|
|
|
|
)
|
|
|
|
})
|
2021-05-24 15:35:46 +02:00
|
|
|
.map(Interned::new);
|
2019-12-13 12:12:36 +01:00
|
|
|
segments.push(name);
|
|
|
|
generic_args.push(args)
|
|
|
|
}
|
|
|
|
Either::Right(crate_id) => {
|
|
|
|
kind = PathKind::DollarCrate(crate_id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::PathSegmentKind::Type { type_ref, trait_ref } => {
|
|
|
|
assert!(path.qualifier().is_none()); // this can only occur at the first segment
|
|
|
|
|
2021-04-10 17:49:12 +02:00
|
|
|
let self_type = TypeRef::from_ast(ctx, type_ref?);
|
2019-12-13 12:12:36 +01:00
|
|
|
|
|
|
|
match trait_ref {
|
|
|
|
// <T>::foo
|
|
|
|
None => {
|
2021-04-05 02:03:37 +02:00
|
|
|
type_anchor = Some(Interned::new(self_type));
|
2019-12-18 17:41:33 +01:00
|
|
|
kind = PathKind::Plain;
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
|
|
|
// <T as Trait<A>>::Foo desugars to Trait<Self=T, A>::Foo
|
|
|
|
Some(trait_ref) => {
|
2021-11-20 16:37:41 +01:00
|
|
|
let Path { mod_path, generic_args: path_generic_args, .. } =
|
|
|
|
Path::from_src(trait_ref.path()?, ctx)?;
|
2022-01-26 18:31:07 +01:00
|
|
|
let num_segments = mod_path.segments().len();
|
2021-04-01 20:35:21 +02:00
|
|
|
kind = mod_path.kind;
|
2019-12-13 12:12:36 +01:00
|
|
|
|
2022-01-26 18:31:07 +01:00
|
|
|
segments.extend(mod_path.segments().iter().cloned().rev());
|
2021-11-20 17:19:19 +01:00
|
|
|
generic_args.extend(Vec::from(path_generic_args).into_iter().rev());
|
2019-12-13 12:12:36 +01:00
|
|
|
|
|
|
|
// Insert the type reference (T in the above example) as Self parameter for the trait
|
2021-03-30 21:43:23 +02:00
|
|
|
let last_segment =
|
|
|
|
generic_args.iter_mut().rev().nth(num_segments.saturating_sub(1))?;
|
2021-05-24 15:35:46 +02:00
|
|
|
let mut args_inner = match last_segment {
|
|
|
|
Some(it) => it.as_ref().clone(),
|
|
|
|
None => GenericArgs::empty(),
|
2019-12-13 12:12:36 +01:00
|
|
|
};
|
|
|
|
args_inner.has_self_type = true;
|
|
|
|
args_inner.args.insert(0, GenericArg::Type(self_type));
|
2021-05-24 15:35:46 +02:00
|
|
|
*last_segment = Some(Interned::new(args_inner));
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::PathSegmentKind::CrateKw => {
|
|
|
|
kind = PathKind::Crate;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ast::PathSegmentKind::SelfKw => {
|
2021-08-22 17:35:52 +02:00
|
|
|
// don't break out if `self` is the last segment of a path, this mean we got a
|
2021-02-24 23:37:08 +01:00
|
|
|
// use tree like `foo::{self}` which we want to resolve as `foo`
|
|
|
|
if !segments.is_empty() {
|
|
|
|
kind = PathKind::Super(0);
|
|
|
|
break;
|
|
|
|
}
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
|
|
|
ast::PathSegmentKind::SuperKw => {
|
2020-03-02 14:28:34 +01:00
|
|
|
let nested_super_count = if let PathKind::Super(n) = kind { n } else { 0 };
|
2020-02-29 20:53:01 -08:00
|
|
|
kind = PathKind::Super(nested_super_count + 1);
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
path = match qualifier(&path) {
|
|
|
|
Some(it) => it,
|
|
|
|
None => break,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
segments.reverse();
|
|
|
|
generic_args.reverse();
|
2020-05-01 11:23:03 +08:00
|
|
|
|
2021-02-24 23:37:08 +01:00
|
|
|
if segments.is_empty() && kind == PathKind::Plain && type_anchor.is_none() {
|
|
|
|
// plain empty paths don't exist, this means we got a single `self` segment as our path
|
|
|
|
kind = PathKind::Super(0);
|
|
|
|
}
|
|
|
|
|
2020-05-01 11:23:03 +08:00
|
|
|
// handle local_inner_macros :
|
|
|
|
// Basically, even in rustc it is quite hacky:
|
|
|
|
// https://github.com/rust-lang/rust/blob/614f273e9388ddd7804d5cbc80b8865068a3744e/src/librustc_resolve/macros.rs#L456
|
|
|
|
// We follow what it did anyway :)
|
|
|
|
if segments.len() == 1 && kind == PathKind::Plain {
|
2020-12-15 15:37:37 +01:00
|
|
|
if let Some(_macro_call) = path.syntax().parent().and_then(ast::MacroCall::cast) {
|
2021-05-06 23:23:50 +02:00
|
|
|
if let Some(crate_id) = hygiene.local_inner_macros(ctx.db.upcast(), path) {
|
2020-12-15 15:37:37 +01:00
|
|
|
kind = PathKind::DollarCrate(crate_id);
|
2020-05-01 11:23:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 20:35:21 +02:00
|
|
|
let mod_path = Interned::new(ModPath::from_segments(kind, segments));
|
2021-11-20 16:37:41 +01:00
|
|
|
return Some(Path { type_anchor, mod_path, generic_args: generic_args.into() });
|
2019-12-13 12:12:36 +01:00
|
|
|
|
|
|
|
fn qualifier(path: &ast::Path) -> Option<ast::Path> {
|
|
|
|
if let Some(q) = path.qualifier() {
|
|
|
|
return Some(q);
|
|
|
|
}
|
|
|
|
// FIXME: this bottom up traversal is not too precise.
|
|
|
|
// Should we handle do a top-down analysis, recording results?
|
|
|
|
let use_tree_list = path.syntax().ancestors().find_map(ast::UseTreeList::cast)?;
|
|
|
|
let use_tree = use_tree_list.parent_use_tree();
|
|
|
|
use_tree.path()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 18:20:13 +08:00
|
|
|
pub(super) fn lower_generic_args(
|
|
|
|
lower_ctx: &LowerCtx,
|
2020-07-31 18:29:29 +02:00
|
|
|
node: ast::GenericArgList,
|
2020-04-30 18:20:13 +08:00
|
|
|
) -> Option<GenericArgs> {
|
2019-12-13 12:12:36 +01:00
|
|
|
let mut args = Vec::new();
|
|
|
|
let mut bindings = Vec::new();
|
2020-07-31 18:41:37 +02:00
|
|
|
for generic_arg in node.generic_args() {
|
|
|
|
match generic_arg {
|
|
|
|
ast::GenericArg::TypeArg(type_arg) => {
|
|
|
|
let type_ref = TypeRef::from_ast_opt(lower_ctx, type_arg.ty());
|
|
|
|
args.push(GenericArg::Type(type_ref));
|
|
|
|
}
|
|
|
|
ast::GenericArg::AssocTypeArg(assoc_type_arg) => {
|
|
|
|
if let Some(name_ref) = assoc_type_arg.name_ref() {
|
|
|
|
let name = name_ref.as_name();
|
|
|
|
let type_ref = assoc_type_arg.ty().map(|it| TypeRef::from_ast(lower_ctx, it));
|
|
|
|
let bounds = if let Some(l) = assoc_type_arg.type_bound_list() {
|
2021-05-24 15:13:23 +02:00
|
|
|
l.bounds()
|
|
|
|
.map(|it| Interned::new(TypeBound::from_ast(lower_ctx, it)))
|
|
|
|
.collect()
|
2020-07-31 18:41:37 +02:00
|
|
|
} else {
|
|
|
|
Vec::new()
|
|
|
|
};
|
|
|
|
bindings.push(AssociatedTypeBinding { name, type_ref, bounds });
|
|
|
|
}
|
|
|
|
}
|
2020-12-11 13:49:32 +01:00
|
|
|
ast::GenericArg::LifetimeArg(lifetime_arg) => {
|
2020-12-15 19:23:51 +01:00
|
|
|
if let Some(lifetime) = lifetime_arg.lifetime() {
|
|
|
|
let lifetime_ref = LifetimeRef::new(&lifetime);
|
2020-12-11 13:49:32 +01:00
|
|
|
args.push(GenericArg::Lifetime(lifetime_ref))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// constants are ignored for now.
|
|
|
|
ast::GenericArg::ConstArg(_) => (),
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-31 18:41:37 +02:00
|
|
|
|
2019-12-13 12:12:36 +01:00
|
|
|
if args.is_empty() && bindings.is_empty() {
|
2020-07-31 18:41:37 +02:00
|
|
|
return None;
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
2021-11-19 19:58:00 +01:00
|
|
|
Some(GenericArgs { args, has_self_type: false, bindings, desugared_from_fn: false })
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Collect `GenericArgs` from the parts of a fn-like path, i.e. `Fn(X, Y)
|
|
|
|
/// -> Z` (which desugars to `Fn<(X, Y), Output=Z>`).
|
|
|
|
fn lower_generic_args_from_fn_path(
|
2020-04-30 18:20:13 +08:00
|
|
|
ctx: &LowerCtx,
|
2019-12-13 12:12:36 +01:00
|
|
|
params: Option<ast::ParamList>,
|
|
|
|
ret_type: Option<ast::RetType>,
|
|
|
|
) -> Option<GenericArgs> {
|
|
|
|
let mut args = Vec::new();
|
|
|
|
let mut bindings = Vec::new();
|
2021-05-25 14:24:08 +02:00
|
|
|
let params = params?;
|
|
|
|
let mut param_types = Vec::new();
|
|
|
|
for param in params.params() {
|
2021-06-13 09:24:16 +05:30
|
|
|
let type_ref = TypeRef::from_ast_opt(ctx, param.ty());
|
2021-05-25 14:24:08 +02:00
|
|
|
param_types.push(type_ref);
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
2021-05-25 14:24:08 +02:00
|
|
|
let arg = GenericArg::Type(TypeRef::Tuple(param_types));
|
|
|
|
args.push(arg);
|
2019-12-13 12:12:36 +01:00
|
|
|
if let Some(ret_type) = ret_type {
|
2021-06-13 09:24:16 +05:30
|
|
|
let type_ref = TypeRef::from_ast_opt(ctx, ret_type.ty());
|
2020-04-10 22:05:46 +02:00
|
|
|
bindings.push(AssociatedTypeBinding {
|
|
|
|
name: name![Output],
|
|
|
|
type_ref: Some(type_ref),
|
|
|
|
bounds: Vec::new(),
|
|
|
|
});
|
2019-12-13 12:12:36 +01:00
|
|
|
} else {
|
2021-05-25 14:24:08 +02:00
|
|
|
// -> ()
|
|
|
|
let type_ref = TypeRef::Tuple(Vec::new());
|
|
|
|
bindings.push(AssociatedTypeBinding {
|
|
|
|
name: name![Output],
|
|
|
|
type_ref: Some(type_ref),
|
|
|
|
bounds: Vec::new(),
|
|
|
|
});
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|
2021-11-19 19:58:00 +01:00
|
|
|
Some(GenericArgs { args, has_self_type: false, bindings, desugared_from_fn: true })
|
2019-12-13 12:12:36 +01:00
|
|
|
}
|