1
1
use crate :: context:: LintContext ;
2
- use crate :: lints:: { NoopMethodCallDiag , SuspiciousDoubleRefDiag } ;
2
+ use crate :: lints:: {
3
+ NoopMethodCallDiag , SuspiciousDoubleRefCloneDiag , SuspiciousDoubleRefDerefDiag ,
4
+ } ;
3
5
use crate :: LateContext ;
4
6
use crate :: LateLintPass ;
5
7
use rustc_hir:: def:: DefKind ;
@@ -102,13 +104,6 @@ impl<'tcx> LateLintPass<'tcx> for NoopMethodCall {
102
104
// (Re)check that it implements the noop diagnostic.
103
105
let Some ( name) = cx. tcx . get_diagnostic_name ( i. def_id ( ) ) else { return } ;
104
106
105
- let op = match name {
106
- sym:: noop_method_borrow => "borrow" ,
107
- sym:: noop_method_clone => "clone" ,
108
- sym:: noop_method_deref => "deref" ,
109
- _ => return ,
110
- } ;
111
-
112
107
let receiver_ty = cx. typeck_results ( ) . expr_ty ( receiver) ;
113
108
let expr_ty = cx. typeck_results ( ) . expr_ty_adjusted ( expr) ;
114
109
let arg_adjustments = cx. typeck_results ( ) . expr_adjustments ( receiver) ;
@@ -129,14 +124,22 @@ impl<'tcx> LateLintPass<'tcx> for NoopMethodCall {
129
124
NoopMethodCallDiag { method : call. ident . name , receiver_ty, label : span } ,
130
125
) ;
131
126
} else {
132
- if op == "borrow" {
133
- return ;
127
+ match name {
128
+ // If `type_of(x) == T` and `x.borrow()` is used to get `&T`,
129
+ // then that should be allowed
130
+ sym:: noop_method_borrow => return ,
131
+ sym:: noop_method_clone => cx. emit_spanned_lint (
132
+ SUSPICIOUS_DOUBLE_REF_OP ,
133
+ span,
134
+ SuspiciousDoubleRefCloneDiag { ty : expr_ty } ,
135
+ ) ,
136
+ sym:: noop_method_deref => cx. emit_spanned_lint (
137
+ SUSPICIOUS_DOUBLE_REF_OP ,
138
+ span,
139
+ SuspiciousDoubleRefDerefDiag { ty : expr_ty } ,
140
+ ) ,
141
+ _ => return ,
134
142
}
135
- cx. emit_spanned_lint (
136
- SUSPICIOUS_DOUBLE_REF_OP ,
137
- span,
138
- SuspiciousDoubleRefDiag { call : call. ident . name , ty : expr_ty, op } ,
139
- )
140
143
}
141
144
}
142
145
}
0 commit comments