the "add missing members" assists: implemented the transformation of const param default values

This commit is contained in:
ponyii 2023-07-11 18:46:39 +04:00
parent 4ebdc6f052
commit 4e2be8e959
3 changed files with 49 additions and 11 deletions

View File

@ -1612,12 +1612,12 @@ pub(crate) fn generic_defaults_query(
let unknown = unknown_const_as_generic( let unknown = unknown_const_as_generic(
db.const_param_ty(ConstParamId::from_unchecked(id)), db.const_param_ty(ConstParamId::from_unchecked(id)),
); );
let val = p.default.as_ref().map_or(unknown, |c| { let mut val = p.default.as_ref().map_or(unknown, |c| {
let c = ctx.lower_const(c, ctx.lower_ty(&p.ty)); let c = ctx.lower_const(c, ctx.lower_ty(&p.ty));
chalk_ir::GenericArg::new(Interner, GenericArgData::Const(c)) chalk_ir::GenericArg::new(Interner, GenericArgData::Const(c))
}); });
// FIXME: check if complex default values refer to // Each default can only refer to previous parameters, see above.
// previous parameters they should not. val = fallback_bound_vars(val, idx, parent_start_idx);
return make_binders(db, &generic_params, val); return make_binders(db, &generic_params, val);
} }
}; };

View File

@ -518,6 +518,37 @@ impl<X> Foo<X> for () {
); );
} }
#[test]
fn test_const_substitution_with_defaults_2() {
check_assist(
add_missing_impl_members,
r#"
mod m {
pub const LEN: usize = 42;
pub trait Foo<const M: usize = LEN, const N: usize = M, T = [bool; N]> {
fn get_t(&self) -> T;
}
}
impl m::Foo for () {
$0
}"#,
r#"
mod m {
pub const LEN: usize = 42;
pub trait Foo<const M: usize = LEN, const N: usize = M, T = [bool; N]> {
fn get_t(&self) -> T;
}
}
impl m::Foo for () {
fn get_t(&self) -> [bool; m::LEN] {
${0:todo!()}
}
}"#,
)
}
#[test] #[test]
fn test_cursor_after_empty_impl_def() { fn test_cursor_after_empty_impl_def() {
check_assist( check_assist(

View File

@ -21,6 +21,7 @@ enum TypeOrConst {
} }
type LifetimeName = String; type LifetimeName = String;
type DefaultedParam = Either<hir::TypeParam, hir::ConstParam>;
/// `PathTransform` substitutes path in SyntaxNodes in bulk. /// `PathTransform` substitutes path in SyntaxNodes in bulk.
/// ///
@ -115,7 +116,7 @@ impl<'a> PathTransform<'a> {
}; };
let mut type_substs: FxHashMap<hir::TypeParam, ast::Type> = Default::default(); let mut type_substs: FxHashMap<hir::TypeParam, ast::Type> = Default::default();
let mut const_substs: FxHashMap<hir::ConstParam, SyntaxNode> = Default::default(); let mut const_substs: FxHashMap<hir::ConstParam, SyntaxNode> = Default::default();
let mut default_types: Vec<hir::TypeParam> = Default::default(); let mut defaulted_params: Vec<DefaultedParam> = Default::default();
self.generic_def self.generic_def
.into_iter() .into_iter()
.flat_map(|it| it.type_params(db)) .flat_map(|it| it.type_params(db))
@ -139,7 +140,7 @@ impl<'a> PathTransform<'a> {
&default.display_source_code(db, source_module.into(), false).ok() &default.display_source_code(db, source_module.into(), false).ok()
{ {
type_substs.insert(k, ast::make::ty(default).clone_for_update()); type_substs.insert(k, ast::make::ty(default).clone_for_update());
default_types.push(k); defaulted_params.push(Either::Left(k));
} }
} }
} }
@ -162,7 +163,7 @@ impl<'a> PathTransform<'a> {
if let Some(default) = k.default(db) { if let Some(default) = k.default(db) {
if let Some(default) = ast::make::expr_const_value(&default).expr() { if let Some(default) = ast::make::expr_const_value(&default).expr() {
const_substs.insert(k, default.syntax().clone_for_update()); const_substs.insert(k, default.syntax().clone_for_update());
// FIXME: transform the default value defaulted_params.push(Either::Right(k));
} }
} }
} }
@ -182,7 +183,7 @@ impl<'a> PathTransform<'a> {
target_module, target_module,
source_scope: self.source_scope, source_scope: self.source_scope,
}; };
ctx.transform_default_type_substs(default_types); ctx.transform_default_values(defaulted_params);
ctx ctx
} }
} }
@ -219,13 +220,19 @@ impl Ctx<'_> {
}); });
} }
fn transform_default_type_substs(&self, default_types: Vec<hir::TypeParam>) { fn transform_default_values(&self, defaulted_params: Vec<DefaultedParam>) {
for k in default_types { // By now the default values are simply copied from where they are declared
let v = self.type_substs.get(&k).unwrap(); // and should be transformed. As any value is allowed to refer to previous
// generic (both type and const) parameters, they should be all iterated left-to-right.
for param in defaulted_params {
let value = match param {
Either::Left(k) => self.type_substs.get(&k).unwrap().syntax(),
Either::Right(k) => self.const_substs.get(&k).unwrap(),
};
// `transform_path` may update a node's parent and that would break the // `transform_path` may update a node's parent and that would break the
// tree traversal. Thus all paths in the tree are collected into a vec // tree traversal. Thus all paths in the tree are collected into a vec
// so that such operation is safe. // so that such operation is safe.
let paths = postorder(&v.syntax()).filter_map(ast::Path::cast).collect::<Vec<_>>(); let paths = postorder(value).filter_map(ast::Path::cast).collect::<Vec<_>>();
for path in paths { for path in paths {
self.transform_path(path); self.transform_path(path);
} }