Don't emit edits for postfix adjustment hints

This commit is contained in:
Lukas Wirth 2024-10-23 10:24:58 +02:00
parent 41fc1fbaab
commit 4fdc63ce38

View File

@ -104,6 +104,7 @@ pub(super) fn hints(
};
let iter: &mut dyn Iterator<Item = _> = iter.as_mut().either(|it| it as _, |it| it as _);
let mut allow_edit = !postfix;
for Adjustment { source, target, kind } in iter {
if source == target {
cov_mark::hit!(same_type_adjustment);
@ -113,6 +114,7 @@ pub(super) fn hints(
// FIXME: Add some nicer tooltips to each of these
let (text, coercion) = match kind {
Adjust::NeverToAny if config.adjustment_hints == AdjustmentHints::Always => {
allow_edit = false;
("<never-to-any>", "never to any")
}
Adjust::Deref(None) => ("*", "dereference"),
@ -133,6 +135,7 @@ pub(super) fn hints(
// some of these could be represented via `as` casts, but that's not too nice and
// handling everything as a prefix expr makes the `(` and `)` insertion easier
Adjust::Pointer(cast) if config.adjustment_hints == AdjustmentHints::Always => {
allow_edit = false;
match cast {
PointerCast::ReifyFnPointer => {
("<fn-item-to-fn-pointer>", "fn item to fn pointer")
@ -179,6 +182,7 @@ pub(super) fn hints(
if pre.is_none() && post.is_none() {
return None;
}
if allow_edit {
let edit = {
let mut b = TextEditBuilder::default();
if let Some(pre) = &pre {
@ -204,6 +208,7 @@ pub(super) fn hints(
(None, Some(post)) => post.text_edit = Some(edit),
(None, None) => (),
}
}
acc.extend(pre);
acc.extend(post);
Some(())