@@ -23,16 +23,16 @@ impl<'tcx> ForLoop<'tcx> {
23
23
#[ inline]
24
24
pub fn hir ( expr : & Expr < ' tcx > ) -> Option < Self > {
25
25
if_chain ! {
26
- if let hir:: ExprKind :: Match ( ref iterexpr, ref arms, hir:: MatchSource :: ForLoopDesugar ) = expr. kind;
26
+ if let hir:: ExprKind :: Match ( iterexpr, arms, hir:: MatchSource :: ForLoopDesugar ) = expr. kind;
27
27
if let Some ( first_arm) = arms. get( 0 ) ;
28
- if let hir:: ExprKind :: Call ( _, ref iterargs) = iterexpr. kind;
28
+ if let hir:: ExprKind :: Call ( _, iterargs) = iterexpr. kind;
29
29
if let Some ( first_arg) = iterargs. get( 0 ) ;
30
30
if iterargs. len( ) == 1 && arms. len( ) == 1 && first_arm. guard. is_none( ) ;
31
- if let hir:: ExprKind :: Loop ( ref block, ..) = first_arm. body. kind;
31
+ if let hir:: ExprKind :: Loop ( block, ..) = first_arm. body. kind;
32
32
if block. expr. is_none( ) ;
33
33
if let [ _, _, ref let_stmt, ref body ] = * block. stmts;
34
- if let hir:: StmtKind :: Local ( ref local) = let_stmt. kind;
35
- if let hir:: StmtKind :: Expr ( ref body_expr) = body. kind;
34
+ if let hir:: StmtKind :: Local ( local) = let_stmt. kind;
35
+ if let hir:: StmtKind :: Expr ( body_expr) = body. kind;
36
36
then {
37
37
return Some ( Self {
38
38
pat: & * local. pat,
@@ -189,7 +189,7 @@ impl<'a> Range<'a> {
189
189
}
190
190
191
191
match expr. kind {
192
- hir:: ExprKind :: Call ( ref path, ref args)
192
+ hir:: ExprKind :: Call ( path, args)
193
193
if matches ! (
194
194
path. kind,
195
195
hir:: ExprKind :: Path ( hir:: QPath :: LangItem ( hir:: LangItem :: RangeInclusiveNew , _) )
@@ -201,7 +201,7 @@ impl<'a> Range<'a> {
201
201
limits : ast:: RangeLimits :: Closed ,
202
202
} )
203
203
} ,
204
- hir:: ExprKind :: Struct ( ref path, ref fields, None ) => match path {
204
+ hir:: ExprKind :: Struct ( path, fields, None ) => match & path {
205
205
hir:: QPath :: LangItem ( hir:: LangItem :: RangeFull , _) => Some ( Range {
206
206
start : None ,
207
207
end : None ,
@@ -247,7 +247,7 @@ impl<'a> VecArgs<'a> {
247
247
/// from `vec!`.
248
248
pub fn hir ( cx : & LateContext < ' _ > , expr : & ' a hir:: Expr < ' _ > ) -> Option < VecArgs < ' a > > {
249
249
if_chain ! {
250
- if let hir:: ExprKind :: Call ( ref fun, ref args) = expr. kind;
250
+ if let hir:: ExprKind :: Call ( fun, args) = expr. kind;
251
251
if let hir:: ExprKind :: Path ( ref qpath) = fun. kind;
252
252
if is_expn_of( fun. span, "vec" ) . is_some( ) ;
253
253
if let Some ( fun_def_id) = cx. qpath_res( qpath, fun. hir_id) . opt_def_id( ) ;
@@ -259,10 +259,10 @@ impl<'a> VecArgs<'a> {
259
259
else if match_def_path( cx, fun_def_id, & paths:: SLICE_INTO_VEC ) && args. len( ) == 1 {
260
260
// `vec![a, b, c]` case
261
261
if_chain! {
262
- if let hir:: ExprKind :: Box ( ref boxed) = args[ 0 ] . kind;
263
- if let hir:: ExprKind :: Array ( ref args) = boxed. kind;
262
+ if let hir:: ExprKind :: Box ( boxed) = args[ 0 ] . kind;
263
+ if let hir:: ExprKind :: Array ( args) = boxed. kind;
264
264
then {
265
- return Some ( VecArgs :: Vec ( & * args) ) ;
265
+ return Some ( VecArgs :: Vec ( args) ) ;
266
266
}
267
267
}
268
268
@@ -566,7 +566,7 @@ pub fn is_from_for_desugar(local: &hir::Local<'_>) -> bool {
566
566
// }
567
567
// ```
568
568
if_chain ! {
569
- if let Some ( ref expr) = local. init;
569
+ if let Some ( expr) = local. init;
570
570
if let hir:: ExprKind :: Match ( _, _, hir:: MatchSource :: ForLoopDesugar ) = expr. kind;
571
571
then {
572
572
return true ;
0 commit comments