Skip to content

Commit eb18b0e

Browse files
committed
Add do_not_recommend typo help
1 parent aa8f0fd commit eb18b0e

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed

compiler/rustc_resolve/src/macros.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use rustc_session::lint::builtin::{
2828
UNUSED_MACRO_RULES, UNUSED_MACROS,
2929
};
3030
use rustc_session::parse::feature_err;
31-
use rustc_span::edit_distance::edit_distance;
31+
use rustc_span::edit_distance::find_best_match_for_name;
3232
use rustc_span::edition::Edition;
3333
use rustc_span::hygiene::{self, AstPass, ExpnData, ExpnKind, LocalExpnId, MacroKind};
3434
use rustc_span::{DUMMY_SP, Ident, Span, Symbol, kw, sym};
@@ -652,13 +652,13 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
652652
if res == Res::NonMacroAttr(NonMacroAttrKind::Tool)
653653
&& let [namespace, attribute, ..] = &*path.segments
654654
&& namespace.ident.name == sym::diagnostic
655-
&& !(attribute.ident.name == sym::on_unimplemented
656-
|| attribute.ident.name == sym::do_not_recommend)
655+
&& ![sym::on_unimplemented, sym::do_not_recommend].contains(&attribute.ident.name)
657656
{
658-
let distance =
659-
edit_distance(attribute.ident.name.as_str(), sym::on_unimplemented.as_str(), 5);
660-
661-
let typo_name = distance.map(|_| sym::on_unimplemented);
657+
let typo_name = find_best_match_for_name(
658+
&[sym::on_unimplemented, sym::do_not_recommend],
659+
attribute.ident.name,
660+
Some(5),
661+
);
662662

663663
self.tcx.sess.psess.buffer_lint(
664664
UNKNOWN_OR_MALFORMED_DIAGNOSTIC_ATTRIBUTES,

tests/ui/diagnostic_namespace/suggest_typos.rs

+5
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ trait Y{}
1616
//~^^HELP an attribute with a similar name exists
1717
trait Z{}
1818

19+
#[diagnostic::dont_recommend]
20+
//~^ERROR unknown diagnostic attribute
21+
//~^^HELP an attribute with a similar name exists
22+
impl X for u8 {}
23+
1924
fn main(){}

tests/ui/diagnostic_namespace/suggest_typos.stderr

+13-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,17 @@ help: an attribute with a similar name exists
3737
LL | #[diagnostic::on_unimplemented]
3838
| ++
3939

40-
error: aborting due to 3 previous errors
40+
error: unknown diagnostic attribute
41+
--> $DIR/suggest_typos.rs:19:15
42+
|
43+
LL | #[diagnostic::dont_recommend]
44+
| ^^^^^^^^^^^^^^
45+
|
46+
help: an attribute with a similar name exists
47+
|
48+
LL - #[diagnostic::dont_recommend]
49+
LL + #[diagnostic::do_not_recommend]
50+
|
51+
52+
error: aborting due to 4 previous errors
4153

0 commit comments

Comments
 (0)