@@ -59,7 +59,7 @@ impl PpAnn for &dyn rustc_hir::intravisit::Map<'_> {
59
59
Nested :: ImplItem ( id) => state. print_impl_item ( self . impl_item ( id) ) ,
60
60
Nested :: ForeignItem ( id) => state. print_foreign_item ( self . foreign_item ( id) ) ,
61
61
Nested :: Body ( id) => state. print_expr ( & self . body ( id) . value ) ,
62
- Nested :: BodyParamPat ( id, i) => state. print_pat ( & self . body ( id) . params [ i] . pat ) ,
62
+ Nested :: BodyParamPat ( id, i) => state. print_pat ( self . body ( id) . params [ i] . pat ) ,
63
63
}
64
64
}
65
65
}
@@ -74,37 +74,37 @@ pub struct State<'a> {
74
74
impl < ' a > State < ' a > {
75
75
pub fn print_node ( & mut self , node : Node < ' _ > ) {
76
76
match node {
77
- Node :: Param ( a) => self . print_param ( & a) ,
78
- Node :: Item ( a) => self . print_item ( & a) ,
79
- Node :: ForeignItem ( a) => self . print_foreign_item ( & a) ,
77
+ Node :: Param ( a) => self . print_param ( a) ,
78
+ Node :: Item ( a) => self . print_item ( a) ,
79
+ Node :: ForeignItem ( a) => self . print_foreign_item ( a) ,
80
80
Node :: TraitItem ( a) => self . print_trait_item ( a) ,
81
81
Node :: ImplItem ( a) => self . print_impl_item ( a) ,
82
- Node :: Variant ( a) => self . print_variant ( & a) ,
83
- Node :: AnonConst ( a) => self . print_anon_const ( & a) ,
84
- Node :: Expr ( a) => self . print_expr ( & a) ,
85
- Node :: Stmt ( a) => self . print_stmt ( & a) ,
86
- Node :: PathSegment ( a) => self . print_path_segment ( & a) ,
87
- Node :: Ty ( a) => self . print_type ( & a) ,
88
- Node :: TypeBinding ( a) => self . print_type_binding ( & a) ,
89
- Node :: TraitRef ( a) => self . print_trait_ref ( & a) ,
90
- Node :: Pat ( a) => self . print_pat ( & a) ,
91
- Node :: Arm ( a) => self . print_arm ( & a) ,
82
+ Node :: Variant ( a) => self . print_variant ( a) ,
83
+ Node :: AnonConst ( a) => self . print_anon_const ( a) ,
84
+ Node :: Expr ( a) => self . print_expr ( a) ,
85
+ Node :: Stmt ( a) => self . print_stmt ( a) ,
86
+ Node :: PathSegment ( a) => self . print_path_segment ( a) ,
87
+ Node :: Ty ( a) => self . print_type ( a) ,
88
+ Node :: TypeBinding ( a) => self . print_type_binding ( a) ,
89
+ Node :: TraitRef ( a) => self . print_trait_ref ( a) ,
90
+ Node :: Pat ( a) => self . print_pat ( a) ,
91
+ Node :: Arm ( a) => self . print_arm ( a) ,
92
92
Node :: Infer ( _) => self . word ( "_" ) ,
93
93
Node :: Block ( a) => {
94
94
// Containing cbox, will be closed by print-block at `}`.
95
95
self . cbox ( INDENT_UNIT ) ;
96
96
// Head-ibox, will be closed by print-block after `{`.
97
97
self . ibox ( 0 ) ;
98
- self . print_block ( & a )
98
+ self . print_block ( a ) ;
99
99
}
100
- Node :: Lifetime ( a) => self . print_lifetime ( & a) ,
100
+ Node :: Lifetime ( a) => self . print_lifetime ( a) ,
101
101
Node :: GenericParam ( _) => panic ! ( "cannot print Node::GenericParam" ) ,
102
102
Node :: Field ( _) => panic ! ( "cannot print Node::Field" ) ,
103
103
// These cases do not carry enough information in the
104
104
// `hir_map` to reconstruct their full structure for pretty
105
105
// printing.
106
106
Node :: Ctor ( ..) => panic ! ( "cannot print isolated Ctor" ) ,
107
- Node :: Local ( a) => self . print_local_decl ( & a) ,
107
+ Node :: Local ( a) => self . print_local_decl ( a) ,
108
108
Node :: Crate ( ..) => panic ! ( "cannot print Crate" ) ,
109
109
}
110
110
}
@@ -266,7 +266,7 @@ impl<'a> State<'a> {
266
266
}
267
267
268
268
pub fn commasep_exprs ( & mut self , b : Breaks , exprs : & [ hir:: Expr < ' _ > ] ) {
269
- self . commasep_cmnt ( b, exprs, |s, e| s. print_expr ( & e) , |e| e. span )
269
+ self . commasep_cmnt ( b, exprs, |s, e| s. print_expr ( e) , |e| e. span ) ;
270
270
}
271
271
272
272
pub fn print_mod ( & mut self , _mod : & hir:: Mod < ' _ > , attrs : & [ ast:: Attribute ] ) {
@@ -287,9 +287,9 @@ impl<'a> State<'a> {
287
287
self . maybe_print_comment ( ty. span . lo ( ) ) ;
288
288
self . ibox ( 0 ) ;
289
289
match ty. kind {
290
- hir:: TyKind :: Slice ( ref ty) => {
290
+ hir:: TyKind :: Slice ( ty) => {
291
291
self . word ( "[" ) ;
292
- self . print_type ( & ty) ;
292
+ self . print_type ( ty) ;
293
293
self . word ( "]" ) ;
294
294
}
295
295
hir:: TyKind :: Ptr ( ref mt) => {
@@ -304,23 +304,16 @@ impl<'a> State<'a> {
304
304
hir:: TyKind :: Never => {
305
305
self . word ( "!" ) ;
306
306
}
307
- hir:: TyKind :: Tup ( ref elts) => {
307
+ hir:: TyKind :: Tup ( elts) => {
308
308
self . popen ( ) ;
309
- self . commasep ( Inconsistent , & elts, |s, ty| s. print_type ( & ty) ) ;
309
+ self . commasep ( Inconsistent , elts, |s, ty| s. print_type ( ty) ) ;
310
310
if elts. len ( ) == 1 {
311
311
self . word ( "," ) ;
312
312
}
313
313
self . pclose ( ) ;
314
314
}
315
- hir:: TyKind :: BareFn ( ref f) => {
316
- self . print_ty_fn (
317
- f. abi ,
318
- f. unsafety ,
319
- & f. decl ,
320
- None ,
321
- & f. generic_params ,
322
- f. param_names ,
323
- ) ;
315
+ hir:: TyKind :: BareFn ( f) => {
316
+ self . print_ty_fn ( f. abi , f. unsafety , f. decl , None , f. generic_params , f. param_names ) ;
324
317
}
325
318
hir:: TyKind :: OpaqueDef ( ..) => self . word ( "/*impl Trait*/" ) ,
326
319
hir:: TyKind :: Path ( ref qpath) => self . print_qpath ( qpath, false ) ,
@@ -344,9 +337,9 @@ impl<'a> State<'a> {
344
337
self . print_lifetime ( lifetime) ;
345
338
}
346
339
}
347
- hir:: TyKind :: Array ( ref ty, ref length) => {
340
+ hir:: TyKind :: Array ( ty, ref length) => {
348
341
self . word ( "[" ) ;
349
- self . print_type ( & ty) ;
342
+ self . print_type ( ty) ;
350
343
self . word ( "; " ) ;
351
344
self . print_array_length ( length) ;
352
345
self . word ( "]" ) ;
@@ -373,7 +366,7 @@ impl<'a> State<'a> {
373
366
self . maybe_print_comment ( item. span . lo ( ) ) ;
374
367
self . print_outer_attributes ( self . attrs ( item. hir_id ( ) ) ) ;
375
368
match item. kind {
376
- hir:: ForeignItemKind :: Fn ( ref decl, ref arg_names, ref generics) => {
369
+ hir:: ForeignItemKind :: Fn ( decl, arg_names, generics) => {
377
370
self . head ( "" ) ;
378
371
self . print_fn (
379
372
decl,
@@ -392,14 +385,14 @@ impl<'a> State<'a> {
392
385
self . word ( ";" ) ;
393
386
self . end ( ) // end the outer fn box
394
387
}
395
- hir:: ForeignItemKind :: Static ( ref t, m) => {
388
+ hir:: ForeignItemKind :: Static ( t, m) => {
396
389
self . head ( "static" ) ;
397
390
if m == hir:: Mutability :: Mut {
398
391
self . word_space ( "mut" ) ;
399
392
}
400
393
self . print_ident ( item. ident ) ;
401
394
self . word_space ( ":" ) ;
402
- self . print_type ( & t) ;
395
+ self . print_type ( t) ;
403
396
self . word ( ";" ) ;
404
397
self . end ( ) ; // end the head-ibox
405
398
self . end ( ) // end the outer cbox
@@ -442,7 +435,7 @@ impl<'a> State<'a> {
442
435
) {
443
436
self . word_space ( "type" ) ;
444
437
self . print_ident ( ident) ;
445
- self . print_generic_params ( & generics. params ) ;
438
+ self . print_generic_params ( generics. params ) ;
446
439
if let Some ( bounds) = bounds {
447
440
self . print_bounds ( ":" , bounds) ;
448
441
}
@@ -463,7 +456,7 @@ impl<'a> State<'a> {
463
456
) {
464
457
self . head ( "type" ) ;
465
458
self . print_ident ( item. ident ) ;
466
- self . print_generic_params ( & generics. params ) ;
459
+ self . print_generic_params ( generics. params ) ;
467
460
self . end ( ) ; // end the inner ibox
468
461
469
462
self . print_where_clause ( generics) ;
@@ -494,7 +487,7 @@ impl<'a> State<'a> {
494
487
self . end ( ) ; // end inner head-block
495
488
self . end ( ) ; // end outer head-block
496
489
}
497
- hir:: ItemKind :: Use ( ref path, kind) => {
490
+ hir:: ItemKind :: Use ( path, kind) => {
498
491
self . head ( "use" ) ;
499
492
self . print_path ( path, false ) ;
500
493
@@ -513,14 +506,14 @@ impl<'a> State<'a> {
513
506
self . end ( ) ; // end inner head-block
514
507
self . end ( ) ; // end outer head-block
515
508
}
516
- hir:: ItemKind :: Static ( ref ty, m, expr) => {
509
+ hir:: ItemKind :: Static ( ty, m, expr) => {
517
510
self . head ( "static" ) ;
518
511
if m == hir:: Mutability :: Mut {
519
512
self . word_space ( "mut" ) ;
520
513
}
521
514
self . print_ident ( item. ident ) ;
522
515
self . word_space ( ":" ) ;
523
- self . print_type ( & ty) ;
516
+ self . print_type ( ty) ;
524
517
self . space ( ) ;
525
518
self . end ( ) ; // end the head-ibox
526
519
@@ -529,11 +522,11 @@ impl<'a> State<'a> {
529
522
self . word ( ";" ) ;
530
523
self . end ( ) ; // end the outer cbox
531
524
}
532
- hir:: ItemKind :: Const ( ref ty, expr) => {
525
+ hir:: ItemKind :: Const ( ty, expr) => {
533
526
self . head ( "const" ) ;
534
527
self . print_ident ( item. ident ) ;
535
528
self . word_space ( ":" ) ;
536
- self . print_type ( & ty) ;
529
+ self . print_type ( ty) ;
537
530
self . space ( ) ;
538
531
self . end ( ) ; // end the head-ibox
539
532
@@ -542,10 +535,10 @@ impl<'a> State<'a> {
542
535
self . word ( ";" ) ;
543
536
self . end ( ) ; // end the outer cbox
544
537
}
545
- hir:: ItemKind :: Fn ( ref sig, ref param_names, body) => {
538
+ hir:: ItemKind :: Fn ( ref sig, param_names, body) => {
546
539
self . head ( "" ) ;
547
540
self . print_fn (
548
- & sig. decl ,
541
+ sig. decl ,
549
542
sig. header ,
550
543
Some ( item. ident . name ) ,
551
544
param_names,
@@ -578,22 +571,22 @@ impl<'a> State<'a> {
578
571
}
579
572
self . bclose ( item. span ) ;
580
573
}
581
- hir:: ItemKind :: GlobalAsm ( ref asm) => {
574
+ hir:: ItemKind :: GlobalAsm ( asm) => {
582
575
self . head ( "global_asm!" ) ;
583
576
self . print_inline_asm ( asm) ;
584
577
self . end ( )
585
578
}
586
- hir:: ItemKind :: TyAlias ( ref ty, ref generics) => {
587
- self . print_item_type ( item, & generics, |state| {
579
+ hir:: ItemKind :: TyAlias ( ty, generics) => {
580
+ self . print_item_type ( item, generics, |state| {
588
581
state. word_space ( "=" ) ;
589
- state. print_type ( & ty) ;
582
+ state. print_type ( ty) ;
590
583
} ) ;
591
584
}
592
585
hir:: ItemKind :: OpaqueTy ( ref opaque_ty) => {
593
- self . print_item_type ( item, & opaque_ty. generics , |state| {
586
+ self . print_item_type ( item, opaque_ty. generics , |state| {
594
587
let mut real_bounds = Vec :: with_capacity ( opaque_ty. bounds . len ( ) ) ;
595
- for b in opaque_ty. bounds . iter ( ) {
596
- if let GenericBound :: Trait ( ref ptr, hir:: TraitBoundModifier :: Maybe ) = * b {
588
+ for b in opaque_ty. bounds {
589
+ if let GenericBound :: Trait ( ptr, hir:: TraitBoundModifier :: Maybe ) = b {
597
590
state. space ( ) ;
598
591
state. word_space ( "for ?" ) ;
599
592
state. print_trait_ref ( & ptr. trait_ref ) ;
@@ -604,73 +597,73 @@ impl<'a> State<'a> {
604
597
state. print_bounds ( "= impl" , real_bounds) ;
605
598
} ) ;
606
599
}
607
- hir:: ItemKind :: Enum ( ref enum_definition, ref params) => {
600
+ hir:: ItemKind :: Enum ( ref enum_definition, params) => {
608
601
self . print_enum_def ( enum_definition, params, item. ident . name , item. span ) ;
609
602
}
610
- hir:: ItemKind :: Struct ( ref struct_def, ref generics) => {
603
+ hir:: ItemKind :: Struct ( ref struct_def, generics) => {
611
604
self . head ( "struct" ) ;
612
605
self . print_struct ( struct_def, generics, item. ident . name , item. span , true ) ;
613
606
}
614
- hir:: ItemKind :: Union ( ref struct_def, ref generics) => {
607
+ hir:: ItemKind :: Union ( ref struct_def, generics) => {
615
608
self . head ( "union" ) ;
616
609
self . print_struct ( struct_def, generics, item. ident . name , item. span , true ) ;
617
610
}
618
- hir:: ItemKind :: Impl ( hir:: Impl {
611
+ hir:: ItemKind :: Impl ( & hir:: Impl {
619
612
unsafety,
620
613
polarity,
621
614
defaultness,
622
615
constness,
623
616
defaultness_span : _,
624
- ref generics,
617
+ generics,
625
618
ref of_trait,
626
- ref self_ty,
619
+ self_ty,
627
620
items,
628
621
} ) => {
629
622
self . head ( "" ) ;
630
- self . print_defaultness ( * defaultness) ;
631
- self . print_unsafety ( * unsafety) ;
623
+ self . print_defaultness ( defaultness) ;
624
+ self . print_unsafety ( unsafety) ;
632
625
self . word_nbsp ( "impl" ) ;
633
626
634
627
if !generics. params . is_empty ( ) {
635
- self . print_generic_params ( & generics. params ) ;
628
+ self . print_generic_params ( generics. params ) ;
636
629
self . space ( ) ;
637
630
}
638
631
639
- if * constness == hir:: Constness :: Const {
632
+ if constness == hir:: Constness :: Const {
640
633
self . word_nbsp ( "const" ) ;
641
634
}
642
635
643
636
if let hir:: ImplPolarity :: Negative ( _) = polarity {
644
637
self . word ( "!" ) ;
645
638
}
646
639
647
- if let Some ( ref t) = of_trait {
640
+ if let Some ( t) = of_trait {
648
641
self . print_trait_ref ( t) ;
649
642
self . space ( ) ;
650
643
self . word_space ( "for" ) ;
651
644
}
652
645
653
- self . print_type ( & self_ty) ;
646
+ self . print_type ( self_ty) ;
654
647
self . print_where_clause ( generics) ;
655
648
656
649
self . space ( ) ;
657
650
self . bopen ( ) ;
658
651
self . print_inner_attributes ( attrs) ;
659
- for impl_item in * items {
652
+ for impl_item in items {
660
653
self . ann . nested ( self , Nested :: ImplItem ( impl_item. id ) ) ;
661
654
}
662
655
self . bclose ( item. span ) ;
663
656
}
664
- hir:: ItemKind :: Trait ( is_auto, unsafety, ref generics, ref bounds, trait_items) => {
657
+ hir:: ItemKind :: Trait ( is_auto, unsafety, generics, bounds, trait_items) => {
665
658
self . head ( "" ) ;
666
659
self . print_is_auto ( is_auto) ;
667
660
self . print_unsafety ( unsafety) ;
668
661
self . word_nbsp ( "trait" ) ;
669
662
self . print_ident ( item. ident ) ;
670
- self . print_generic_params ( & generics. params ) ;
663
+ self . print_generic_params ( generics. params ) ;
671
664
let mut real_bounds = Vec :: with_capacity ( bounds. len ( ) ) ;
672
- for b in bounds. iter ( ) {
673
- if let GenericBound :: Trait ( ref ptr, hir:: TraitBoundModifier :: Maybe ) = * b {
665
+ for b in bounds {
666
+ if let GenericBound :: Trait ( ptr, hir:: TraitBoundModifier :: Maybe ) = b {
674
667
self . space ( ) ;
675
668
self . word_space ( "for ?" ) ;
676
669
self . print_trait_ref ( & ptr. trait_ref ) ;
@@ -687,14 +680,14 @@ impl<'a> State<'a> {
687
680
}
688
681
self . bclose ( item. span ) ;
689
682
}
690
- hir:: ItemKind :: TraitAlias ( ref generics, ref bounds) => {
683
+ hir:: ItemKind :: TraitAlias ( generics, bounds) => {
691
684
self . head ( "trait" ) ;
692
685
self . print_ident ( item. ident ) ;
693
- self . print_generic_params ( & generics. params ) ;
686
+ self . print_generic_params ( generics. params ) ;
694
687
let mut real_bounds = Vec :: with_capacity ( bounds. len ( ) ) ;
695
688
// FIXME(durka) this seems to be some quite outdated syntax
696
- for b in bounds. iter ( ) {
697
- if let GenericBound :: Trait ( ref ptr, hir:: TraitBoundModifier :: Maybe ) = * b {
689
+ for b in bounds {
690
+ if let GenericBound :: Trait ( ptr, hir:: TraitBoundModifier :: Maybe ) = b {
698
691
self . space ( ) ;
699
692
self . word_space ( "for ?" ) ;
700
693
self . print_trait_ref ( & ptr. trait_ref ) ;
@@ -714,7 +707,7 @@ impl<'a> State<'a> {
714
707
}
715
708
716
709
pub fn print_trait_ref ( & mut self , t : & hir:: TraitRef < ' _ > ) {
717
- self . print_path ( & t. path , false )
710
+ self . print_path ( t. path , false ) ;
718
711
}
719
712
720
713
fn print_formal_generic_params ( & mut self , generic_params : & [ hir:: GenericParam < ' _ > ] ) {
@@ -726,8 +719,8 @@ impl<'a> State<'a> {
726
719
}
727
720
728
721
fn print_poly_trait_ref ( & mut self , t : & hir:: PolyTraitRef < ' _ > ) {
729
- self . print_formal_generic_params ( & t. bound_generic_params ) ;
730
- self . print_trait_ref ( & t. trait_ref )
722
+ self . print_formal_generic_params ( t. bound_generic_params ) ;
723
+ self . print_trait_ref ( & t. trait_ref ) ;
731
724
}
732
725
733
726
pub fn print_enum_def (
@@ -739,10 +732,10 @@ impl<'a> State<'a> {
739
732
) {
740
733
self . head ( "enum" ) ;
741
734
self . print_name ( name) ;
742
- self . print_generic_params ( & generics. params ) ;
735
+ self . print_generic_params ( generics. params ) ;
743
736
self . print_where_clause ( generics) ;
744
737
self . space ( ) ;
745
- self . print_variants ( & enum_definition. variants , span)
738
+ self . print_variants ( enum_definition. variants , span) ;
746
739
}
747
740
748
741
pub fn print_variants ( & mut self , variants : & [ hir:: Variant < ' _ > ] , span : rustc_span:: Span ) {
@@ -776,15 +769,15 @@ impl<'a> State<'a> {
776
769
print_finalizer : bool ,
777
770
) {
778
771
self . print_name ( name) ;
779
- self . print_generic_params ( & generics. params ) ;
772
+ self . print_generic_params ( generics. params ) ;
780
773
match struct_def {
781
774
hir:: VariantData :: Tuple ( ..) | hir:: VariantData :: Unit ( ..) => {
782
775
if let hir:: VariantData :: Tuple ( ..) = struct_def {
783
776
self . popen ( ) ;
784
777
self . commasep ( Inconsistent , struct_def. fields ( ) , |s, field| {
785
778
s. maybe_print_comment ( field. span . lo ( ) ) ;
786
779
s. print_outer_attributes ( s. attrs ( field. hir_id ) ) ;
787
- s. print_type ( & field. ty )
780
+ s. print_type ( field. ty ) ;
788
781
} ) ;
789
782
self . pclose ( ) ;
790
783
}
@@ -807,7 +800,7 @@ impl<'a> State<'a> {
807
800
self . print_outer_attributes ( self . attrs ( field. hir_id ) ) ;
808
801
self . print_ident ( field. ident ) ;
809
802
self . word_nbsp ( ":" ) ;
810
- self . print_type ( & field. ty ) ;
803
+ self . print_type ( field. ty ) ;
811
804
self . word ( "," ) ;
812
805
}
813
806
@@ -819,7 +812,7 @@ impl<'a> State<'a> {
819
812
pub fn print_variant ( & mut self , v : & hir:: Variant < ' _ > ) {
820
813
self . head ( "" ) ;
821
814
let generics = hir:: Generics :: empty ( ) ;
822
- self . print_struct ( & v. data , & generics, v. ident . name , v. span , false ) ;
815
+ self . print_struct ( & v. data , generics, v. ident . name , v. span , false ) ;
823
816
if let Some ( ref d) = v. disr_expr {
824
817
self . space ( ) ;
825
818
self . word_space ( "=" ) ;
@@ -834,7 +827,7 @@ impl<'a> State<'a> {
834
827
arg_names : & [ Ident ] ,
835
828
body_id : Option < hir:: BodyId > ,
836
829
) {
837
- self . print_fn ( & m. decl , m. header , Some ( ident. name ) , generics, arg_names, body_id)
830
+ self . print_fn ( m. decl , m. header , Some ( ident. name ) , generics, arg_names, body_id) ;
838
831
}
839
832
840
833
pub fn print_trait_item ( & mut self , ti : & hir:: TraitItem < ' _ > ) {
@@ -843,28 +836,23 @@ impl<'a> State<'a> {
843
836
self . maybe_print_comment ( ti. span . lo ( ) ) ;
844
837
self . print_outer_attributes ( self . attrs ( ti. hir_id ( ) ) ) ;
845
838
match ti. kind {
846
- hir:: TraitItemKind :: Const ( ref ty, default) => {
847
- self . print_associated_const ( ti. ident , & ty, default) ;
839
+ hir:: TraitItemKind :: Const ( ty, default) => {
840
+ self . print_associated_const ( ti. ident , ty, default) ;
848
841
}
849
- hir:: TraitItemKind :: Fn ( ref sig, hir:: TraitFn :: Required ( ref arg_names) ) => {
850
- self . print_method_sig ( ti. ident , sig, & ti. generics , arg_names, None ) ;
842
+ hir:: TraitItemKind :: Fn ( ref sig, hir:: TraitFn :: Required ( arg_names) ) => {
843
+ self . print_method_sig ( ti. ident , sig, ti. generics , arg_names, None ) ;
851
844
self . word ( ";" ) ;
852
845
}
853
846
hir:: TraitItemKind :: Fn ( ref sig, hir:: TraitFn :: Provided ( body) ) => {
854
847
self . head ( "" ) ;
855
- self . print_method_sig ( ti. ident , sig, & ti. generics , & [ ] , Some ( body) ) ;
848
+ self . print_method_sig ( ti. ident , sig, ti. generics , & [ ] , Some ( body) ) ;
856
849
self . nbsp ( ) ;
857
850
self . end ( ) ; // need to close a box
858
851
self . end ( ) ; // need to close a box
859
852
self . ann . nested ( self , Nested :: Body ( body) ) ;
860
853
}
861
- hir:: TraitItemKind :: Type ( ref bounds, ref default) => {
862
- self . print_associated_type (
863
- ti. ident ,
864
- & ti. generics ,
865
- Some ( bounds) ,
866
- default. as_ref ( ) . map ( |ty| & * * ty) ,
867
- ) ;
854
+ hir:: TraitItemKind :: Type ( bounds, default) => {
855
+ self . print_associated_type ( ti. ident , ti. generics , Some ( bounds) , default) ;
868
856
}
869
857
}
870
858
self . ann . post ( self , AnnNode :: SubItem ( ti. hir_id ( ) ) )
@@ -877,19 +865,19 @@ impl<'a> State<'a> {
877
865
self . print_outer_attributes ( self . attrs ( ii. hir_id ( ) ) ) ;
878
866
879
867
match ii. kind {
880
- hir:: ImplItemKind :: Const ( ref ty, expr) => {
881
- self . print_associated_const ( ii. ident , & ty, Some ( expr) ) ;
868
+ hir:: ImplItemKind :: Const ( ty, expr) => {
869
+ self . print_associated_const ( ii. ident , ty, Some ( expr) ) ;
882
870
}
883
871
hir:: ImplItemKind :: Fn ( ref sig, body) => {
884
872
self . head ( "" ) ;
885
- self . print_method_sig ( ii. ident , sig, & ii. generics , & [ ] , Some ( body) ) ;
873
+ self . print_method_sig ( ii. ident , sig, ii. generics , & [ ] , Some ( body) ) ;
886
874
self . nbsp ( ) ;
887
875
self . end ( ) ; // need to close a box
888
876
self . end ( ) ; // need to close a box
889
877
self . ann . nested ( self , Nested :: Body ( body) ) ;
890
878
}
891
- hir:: ImplItemKind :: TyAlias ( ref ty) => {
892
- self . print_associated_type ( ii. ident , & ii. generics , None , Some ( ty) ) ;
879
+ hir:: ImplItemKind :: TyAlias ( ty) => {
880
+ self . print_associated_type ( ii. ident , ii. generics , None , Some ( ty) ) ;
893
881
}
894
882
}
895
883
self . ann . post ( self , AnnNode :: SubItem ( ii. hir_id ( ) ) )
@@ -904,28 +892,28 @@ impl<'a> State<'a> {
904
892
decl ( self ) ;
905
893
self . end ( ) ;
906
894
907
- if let Some ( ref init) = init {
895
+ if let Some ( init) = init {
908
896
self . nbsp ( ) ;
909
897
self . word_space ( "=" ) ;
910
- self . print_expr ( & init) ;
898
+ self . print_expr ( init) ;
911
899
}
912
900
self . end ( )
913
901
}
914
902
915
903
pub fn print_stmt ( & mut self , st : & hir:: Stmt < ' _ > ) {
916
904
self . maybe_print_comment ( st. span . lo ( ) ) ;
917
905
match st. kind {
918
- hir:: StmtKind :: Local ( ref loc) => {
919
- self . print_local ( loc. init , |this| this. print_local_decl ( & loc) ) ;
906
+ hir:: StmtKind :: Local ( loc) => {
907
+ self . print_local ( loc. init , |this| this. print_local_decl ( loc) ) ;
920
908
}
921
909
hir:: StmtKind :: Item ( item) => self . ann . nested ( self , Nested :: Item ( item) ) ,
922
- hir:: StmtKind :: Expr ( ref expr) => {
910
+ hir:: StmtKind :: Expr ( expr) => {
923
911
self . space_if_not_bol ( ) ;
924
- self . print_expr ( & expr) ;
912
+ self . print_expr ( expr) ;
925
913
}
926
- hir:: StmtKind :: Semi ( ref expr) => {
914
+ hir:: StmtKind :: Semi ( expr) => {
927
915
self . space_if_not_bol ( ) ;
928
- self . print_expr ( & expr) ;
916
+ self . print_expr ( expr) ;
929
917
self . word ( ";" ) ;
930
918
}
931
919
}
@@ -966,9 +954,9 @@ impl<'a> State<'a> {
966
954
for st in blk. stmts {
967
955
self . print_stmt ( st) ;
968
956
}
969
- if let Some ( ref expr) = blk. expr {
957
+ if let Some ( expr) = blk. expr {
970
958
self . space_if_not_bol ( ) ;
971
- self . print_expr ( & expr) ;
959
+ self . print_expr ( expr) ;
972
960
self . maybe_print_trailing_comment ( expr. span , Some ( blk. span . hi ( ) ) ) ;
973
961
}
974
962
self . bclose_maybe_open ( blk. span , close_box) ;
@@ -979,21 +967,21 @@ impl<'a> State<'a> {
979
967
if let Some ( els_inner) = els {
980
968
match els_inner. kind {
981
969
// Another `else if` block.
982
- hir:: ExprKind :: If ( ref i, ref then, ref e) => {
970
+ hir:: ExprKind :: If ( i, then, e) => {
983
971
self . cbox ( INDENT_UNIT - 1 ) ;
984
972
self . ibox ( 0 ) ;
985
973
self . word ( " else if " ) ;
986
- self . print_expr_as_cond ( & i) ;
974
+ self . print_expr_as_cond ( i) ;
987
975
self . space ( ) ;
988
- self . print_expr ( & then) ;
989
- self . print_else ( e. as_ref ( ) . map ( |e| & * * e ) )
976
+ self . print_expr ( then) ;
977
+ self . print_else ( e) ;
990
978
}
991
979
// Final `else` block.
992
- hir:: ExprKind :: Block ( ref b, _) => {
980
+ hir:: ExprKind :: Block ( b, _) => {
993
981
self . cbox ( INDENT_UNIT - 1 ) ;
994
982
self . ibox ( 0 ) ;
995
983
self . word ( " else " ) ;
996
- self . print_block ( & b )
984
+ self . print_block ( b ) ;
997
985
}
998
986
// Constraints would be great here!
999
987
_ => {
@@ -1048,7 +1036,7 @@ impl<'a> State<'a> {
1048
1036
if needs_par {
1049
1037
self . popen ( ) ;
1050
1038
}
1051
- if let hir:: ExprKind :: DropTemps ( ref actual_expr) = expr. kind {
1039
+ if let hir:: ExprKind :: DropTemps ( actual_expr) = expr. kind {
1052
1040
self . print_expr ( actual_expr) ;
1053
1041
} else {
1054
1042
self . print_expr ( expr) ;
@@ -1114,7 +1102,7 @@ impl<'a> State<'a> {
1114
1102
& mut self ,
1115
1103
qpath : & hir:: QPath < ' _ > ,
1116
1104
fields : & [ hir:: ExprField < ' _ > ] ,
1117
- wth : & Option < & hir:: Expr < ' _ > > ,
1105
+ wth : Option < & hir:: Expr < ' _ > > ,
1118
1106
) {
1119
1107
self . print_qpath ( qpath, true ) ;
1120
1108
self . word ( "{" ) ;
@@ -1127,28 +1115,24 @@ impl<'a> State<'a> {
1127
1115
s. print_ident ( field. ident ) ;
1128
1116
s. word_space ( ":" ) ;
1129
1117
}
1130
- s. print_expr ( & field. expr ) ;
1118
+ s. print_expr ( field. expr ) ;
1131
1119
s. end ( )
1132
1120
} ,
1133
1121
|f| f. span ,
1134
1122
) ;
1135
- match * wth {
1136
- Some ( ref expr) => {
1137
- self . ibox ( INDENT_UNIT ) ;
1138
- if !fields. is_empty ( ) {
1139
- self . word ( "," ) ;
1140
- self . space ( ) ;
1141
- }
1142
- self . word ( ".." ) ;
1143
- self . print_expr ( & expr) ;
1144
- self . end ( ) ;
1145
- }
1146
- _ => {
1147
- if !fields. is_empty ( ) {
1148
- self . word ( "," )
1149
- }
1123
+ if let Some ( expr) = wth {
1124
+ self . ibox ( INDENT_UNIT ) ;
1125
+ if !fields. is_empty ( ) {
1126
+ self . word ( "," ) ;
1127
+ self . space ( ) ;
1150
1128
}
1129
+ self . word ( ".." ) ;
1130
+ self . print_expr ( expr) ;
1131
+ self . end ( ) ;
1132
+ } else if !fields. is_empty ( ) {
1133
+ self . word ( "," ) ;
1151
1134
}
1135
+
1152
1136
self . word ( "}" ) ;
1153
1137
}
1154
1138
@@ -1249,27 +1233,26 @@ impl<'a> State<'a> {
1249
1233
Options ( ast:: InlineAsmOptions ) ,
1250
1234
}
1251
1235
1252
- let mut args =
1253
- vec ! [ AsmArg :: Template ( ast:: InlineAsmTemplatePiece :: to_string( & asm. template) ) ] ;
1236
+ let mut args = vec ! [ AsmArg :: Template ( ast:: InlineAsmTemplatePiece :: to_string( asm. template) ) ] ;
1254
1237
args. extend ( asm. operands . iter ( ) . map ( |( o, _) | AsmArg :: Operand ( o) ) ) ;
1255
1238
if !asm. options . is_empty ( ) {
1256
1239
args. push ( AsmArg :: Options ( asm. options ) ) ;
1257
1240
}
1258
1241
1259
1242
self . popen ( ) ;
1260
- self . commasep ( Consistent , & args, |s, arg| match arg {
1261
- AsmArg :: Template ( template) => s. print_string ( & template, ast:: StrStyle :: Cooked ) ,
1262
- AsmArg :: Operand ( op) => match op {
1263
- hir:: InlineAsmOperand :: In { reg, expr } => {
1243
+ self . commasep ( Consistent , & args, |s, arg| match * arg {
1244
+ AsmArg :: Template ( ref template) => s. print_string ( template, ast:: StrStyle :: Cooked ) ,
1245
+ AsmArg :: Operand ( op) => match * op {
1246
+ hir:: InlineAsmOperand :: In { reg, ref expr } => {
1264
1247
s. word ( "in" ) ;
1265
1248
s. popen ( ) ;
1266
1249
s. word ( format ! ( "{}" , reg) ) ;
1267
1250
s. pclose ( ) ;
1268
1251
s. space ( ) ;
1269
1252
s. print_expr ( expr) ;
1270
1253
}
1271
- hir:: InlineAsmOperand :: Out { reg, late, expr } => {
1272
- s. word ( if * late { "lateout" } else { "out" } ) ;
1254
+ hir:: InlineAsmOperand :: Out { reg, late, ref expr } => {
1255
+ s. word ( if late { "lateout" } else { "out" } ) ;
1273
1256
s. popen ( ) ;
1274
1257
s. word ( format ! ( "{}" , reg) ) ;
1275
1258
s. pclose ( ) ;
@@ -1279,16 +1262,16 @@ impl<'a> State<'a> {
1279
1262
None => s. word ( "_" ) ,
1280
1263
}
1281
1264
}
1282
- hir:: InlineAsmOperand :: InOut { reg, late, expr } => {
1283
- s. word ( if * late { "inlateout" } else { "inout" } ) ;
1265
+ hir:: InlineAsmOperand :: InOut { reg, late, ref expr } => {
1266
+ s. word ( if late { "inlateout" } else { "inout" } ) ;
1284
1267
s. popen ( ) ;
1285
1268
s. word ( format ! ( "{}" , reg) ) ;
1286
1269
s. pclose ( ) ;
1287
1270
s. space ( ) ;
1288
1271
s. print_expr ( expr) ;
1289
1272
}
1290
- hir:: InlineAsmOperand :: SplitInOut { reg, late, in_expr, out_expr } => {
1291
- s. word ( if * late { "inlateout" } else { "inout" } ) ;
1273
+ hir:: InlineAsmOperand :: SplitInOut { reg, late, ref in_expr, ref out_expr } => {
1274
+ s. word ( if late { "inlateout" } else { "inout" } ) ;
1292
1275
s. popen ( ) ;
1293
1276
s. word ( format ! ( "{}" , reg) ) ;
1294
1277
s. pclose ( ) ;
@@ -1301,17 +1284,17 @@ impl<'a> State<'a> {
1301
1284
None => s. word ( "_" ) ,
1302
1285
}
1303
1286
}
1304
- hir:: InlineAsmOperand :: Const { anon_const } => {
1287
+ hir:: InlineAsmOperand :: Const { ref anon_const } => {
1305
1288
s. word ( "const" ) ;
1306
1289
s. space ( ) ;
1307
1290
s. print_anon_const ( anon_const) ;
1308
1291
}
1309
- hir:: InlineAsmOperand :: SymFn { anon_const } => {
1292
+ hir:: InlineAsmOperand :: SymFn { ref anon_const } => {
1310
1293
s. word ( "sym_fn" ) ;
1311
1294
s. space ( ) ;
1312
1295
s. print_anon_const ( anon_const) ;
1313
1296
}
1314
- hir:: InlineAsmOperand :: SymStatic { path, def_id : _ } => {
1297
+ hir:: InlineAsmOperand :: SymStatic { ref path, def_id : _ } => {
1315
1298
s. word ( "sym_static" ) ;
1316
1299
s. space ( ) ;
1317
1300
s. print_qpath ( path, true ) ;
@@ -1363,57 +1346,57 @@ impl<'a> State<'a> {
1363
1346
self . ibox ( INDENT_UNIT ) ;
1364
1347
self . ann . pre ( self , AnnNode :: Expr ( expr) ) ;
1365
1348
match expr. kind {
1366
- hir:: ExprKind :: Box ( ref expr) => {
1349
+ hir:: ExprKind :: Box ( expr) => {
1367
1350
self . word_space ( "box" ) ;
1368
1351
self . print_expr_maybe_paren ( expr, parser:: PREC_PREFIX ) ;
1369
1352
}
1370
- hir:: ExprKind :: Array ( ref exprs) => {
1353
+ hir:: ExprKind :: Array ( exprs) => {
1371
1354
self . print_expr_vec ( exprs) ;
1372
1355
}
1373
1356
hir:: ExprKind :: ConstBlock ( ref anon_const) => {
1374
1357
self . print_expr_anon_const ( anon_const) ;
1375
1358
}
1376
- hir:: ExprKind :: Repeat ( ref element, ref count) => {
1377
- self . print_expr_repeat ( & element, count) ;
1359
+ hir:: ExprKind :: Repeat ( element, ref count) => {
1360
+ self . print_expr_repeat ( element, count) ;
1378
1361
}
1379
- hir:: ExprKind :: Struct ( ref qpath, fields, ref wth) => {
1362
+ hir:: ExprKind :: Struct ( qpath, fields, wth) => {
1380
1363
self . print_expr_struct ( qpath, fields, wth) ;
1381
1364
}
1382
- hir:: ExprKind :: Tup ( ref exprs) => {
1365
+ hir:: ExprKind :: Tup ( exprs) => {
1383
1366
self . print_expr_tup ( exprs) ;
1384
1367
}
1385
- hir:: ExprKind :: Call ( ref func, ref args) => {
1386
- self . print_expr_call ( & func, args) ;
1368
+ hir:: ExprKind :: Call ( func, args) => {
1369
+ self . print_expr_call ( func, args) ;
1387
1370
}
1388
- hir:: ExprKind :: MethodCall ( ref segment, ref args, _) => {
1371
+ hir:: ExprKind :: MethodCall ( segment, args, _) => {
1389
1372
self . print_expr_method_call ( segment, args) ;
1390
1373
}
1391
- hir:: ExprKind :: Binary ( op, ref lhs, ref rhs) => {
1392
- self . print_expr_binary ( op, & lhs, & rhs) ;
1374
+ hir:: ExprKind :: Binary ( op, lhs, rhs) => {
1375
+ self . print_expr_binary ( op, lhs, rhs) ;
1393
1376
}
1394
- hir:: ExprKind :: Unary ( op, ref expr) => {
1395
- self . print_expr_unary ( op, & expr) ;
1377
+ hir:: ExprKind :: Unary ( op, expr) => {
1378
+ self . print_expr_unary ( op, expr) ;
1396
1379
}
1397
- hir:: ExprKind :: AddrOf ( k, m, ref expr) => {
1398
- self . print_expr_addr_of ( k, m, & expr) ;
1380
+ hir:: ExprKind :: AddrOf ( k, m, expr) => {
1381
+ self . print_expr_addr_of ( k, m, expr) ;
1399
1382
}
1400
1383
hir:: ExprKind :: Lit ( ref lit) => {
1401
- self . print_literal ( & lit) ;
1384
+ self . print_literal ( lit) ;
1402
1385
}
1403
- hir:: ExprKind :: Cast ( ref expr, ref ty) => {
1386
+ hir:: ExprKind :: Cast ( expr, ty) => {
1404
1387
let prec = AssocOp :: As . precedence ( ) as i8 ;
1405
- self . print_expr_maybe_paren ( & expr, prec) ;
1388
+ self . print_expr_maybe_paren ( expr, prec) ;
1406
1389
self . space ( ) ;
1407
1390
self . word_space ( "as" ) ;
1408
- self . print_type ( & ty) ;
1391
+ self . print_type ( ty) ;
1409
1392
}
1410
- hir:: ExprKind :: Type ( ref expr, ref ty) => {
1393
+ hir:: ExprKind :: Type ( expr, ty) => {
1411
1394
let prec = AssocOp :: Colon . precedence ( ) as i8 ;
1412
- self . print_expr_maybe_paren ( & expr, prec) ;
1395
+ self . print_expr_maybe_paren ( expr, prec) ;
1413
1396
self . word_space ( ":" ) ;
1414
- self . print_type ( & ty) ;
1397
+ self . print_type ( ty) ;
1415
1398
}
1416
- hir:: ExprKind :: DropTemps ( ref init) => {
1399
+ hir:: ExprKind :: DropTemps ( init) => {
1417
1400
// Print `{`:
1418
1401
self . cbox ( INDENT_UNIT ) ;
1419
1402
self . ibox ( 0 ) ;
@@ -1431,25 +1414,25 @@ impl<'a> State<'a> {
1431
1414
// Print `}`:
1432
1415
self . bclose_maybe_open ( expr. span , true ) ;
1433
1416
}
1434
- hir:: ExprKind :: Let ( hir:: Let { pat, ty, init, .. } ) => {
1435
- self . print_let ( pat, * ty, init) ;
1417
+ hir:: ExprKind :: Let ( & hir:: Let { pat, ty, init, .. } ) => {
1418
+ self . print_let ( pat, ty, init) ;
1436
1419
}
1437
- hir:: ExprKind :: If ( ref test, ref blk, ref elseopt) => {
1438
- self . print_if ( & test, & blk, elseopt. as_ref ( ) . map ( |e| & * * e ) ) ;
1420
+ hir:: ExprKind :: If ( test, blk, elseopt) => {
1421
+ self . print_if ( test, blk, elseopt) ;
1439
1422
}
1440
- hir:: ExprKind :: Loop ( ref blk, opt_label, _, _) => {
1423
+ hir:: ExprKind :: Loop ( blk, opt_label, _, _) => {
1441
1424
if let Some ( label) = opt_label {
1442
1425
self . print_ident ( label. ident ) ;
1443
1426
self . word_space ( ":" ) ;
1444
1427
}
1445
1428
self . head ( "loop" ) ;
1446
- self . print_block ( & blk) ;
1429
+ self . print_block ( blk) ;
1447
1430
}
1448
- hir:: ExprKind :: Match ( ref expr, arms, _) => {
1431
+ hir:: ExprKind :: Match ( expr, arms, _) => {
1449
1432
self . cbox ( INDENT_UNIT ) ;
1450
1433
self . ibox ( INDENT_UNIT ) ;
1451
1434
self . word_nbsp ( "match" ) ;
1452
- self . print_expr_as_cond ( & expr) ;
1435
+ self . print_expr_as_cond ( expr) ;
1453
1436
self . space ( ) ;
1454
1437
self . bopen ( ) ;
1455
1438
for arm in arms {
@@ -1460,15 +1443,15 @@ impl<'a> State<'a> {
1460
1443
hir:: ExprKind :: Closure {
1461
1444
capture_clause,
1462
1445
bound_generic_params,
1463
- ref fn_decl,
1446
+ fn_decl,
1464
1447
body,
1465
1448
fn_decl_span : _,
1466
1449
movability : _,
1467
1450
} => {
1468
1451
self . print_formal_generic_params ( bound_generic_params) ;
1469
1452
self . print_capture_clause ( capture_clause) ;
1470
1453
1471
- self . print_closure_params ( & fn_decl, body) ;
1454
+ self . print_closure_params ( fn_decl, body) ;
1472
1455
self . space ( ) ;
1473
1456
1474
1457
// This is a bare expression.
@@ -1480,7 +1463,7 @@ impl<'a> State<'a> {
1480
1463
// empty box to satisfy the close.
1481
1464
self . ibox ( 0 ) ;
1482
1465
}
1483
- hir:: ExprKind :: Block ( ref blk, opt_label) => {
1466
+ hir:: ExprKind :: Block ( blk, opt_label) => {
1484
1467
if let Some ( label) = opt_label {
1485
1468
self . print_ident ( label. ident ) ;
1486
1469
self . word_space ( ":" ) ;
@@ -1489,42 +1472,42 @@ impl<'a> State<'a> {
1489
1472
self . cbox ( INDENT_UNIT ) ;
1490
1473
// head-box, will be closed by print-block after `{`
1491
1474
self . ibox ( 0 ) ;
1492
- self . print_block ( & blk) ;
1475
+ self . print_block ( blk) ;
1493
1476
}
1494
- hir:: ExprKind :: Assign ( ref lhs, ref rhs, _) => {
1477
+ hir:: ExprKind :: Assign ( lhs, rhs, _) => {
1495
1478
let prec = AssocOp :: Assign . precedence ( ) as i8 ;
1496
- self . print_expr_maybe_paren ( & lhs, prec + 1 ) ;
1479
+ self . print_expr_maybe_paren ( lhs, prec + 1 ) ;
1497
1480
self . space ( ) ;
1498
1481
self . word_space ( "=" ) ;
1499
- self . print_expr_maybe_paren ( & rhs, prec) ;
1482
+ self . print_expr_maybe_paren ( rhs, prec) ;
1500
1483
}
1501
- hir:: ExprKind :: AssignOp ( op, ref lhs, ref rhs) => {
1484
+ hir:: ExprKind :: AssignOp ( op, lhs, rhs) => {
1502
1485
let prec = AssocOp :: Assign . precedence ( ) as i8 ;
1503
- self . print_expr_maybe_paren ( & lhs, prec + 1 ) ;
1486
+ self . print_expr_maybe_paren ( lhs, prec + 1 ) ;
1504
1487
self . space ( ) ;
1505
1488
self . word ( op. node . as_str ( ) ) ;
1506
1489
self . word_space ( "=" ) ;
1507
- self . print_expr_maybe_paren ( & rhs, prec) ;
1490
+ self . print_expr_maybe_paren ( rhs, prec) ;
1508
1491
}
1509
- hir:: ExprKind :: Field ( ref expr, ident) => {
1492
+ hir:: ExprKind :: Field ( expr, ident) => {
1510
1493
self . print_expr_maybe_paren ( expr, parser:: PREC_POSTFIX ) ;
1511
1494
self . word ( "." ) ;
1512
1495
self . print_ident ( ident) ;
1513
1496
}
1514
- hir:: ExprKind :: Index ( ref expr, ref index) => {
1515
- self . print_expr_maybe_paren ( & expr, parser:: PREC_POSTFIX ) ;
1497
+ hir:: ExprKind :: Index ( expr, index) => {
1498
+ self . print_expr_maybe_paren ( expr, parser:: PREC_POSTFIX ) ;
1516
1499
self . word ( "[" ) ;
1517
- self . print_expr ( & index) ;
1500
+ self . print_expr ( index) ;
1518
1501
self . word ( "]" ) ;
1519
1502
}
1520
1503
hir:: ExprKind :: Path ( ref qpath) => self . print_qpath ( qpath, true ) ,
1521
- hir:: ExprKind :: Break ( destination, ref opt_expr) => {
1504
+ hir:: ExprKind :: Break ( destination, opt_expr) => {
1522
1505
self . word ( "break" ) ;
1523
1506
if let Some ( label) = destination. label {
1524
1507
self . space ( ) ;
1525
1508
self . print_ident ( label. ident ) ;
1526
1509
}
1527
- if let Some ( ref expr) = * opt_expr {
1510
+ if let Some ( expr) = opt_expr {
1528
1511
self . space ( ) ;
1529
1512
self . print_expr_maybe_paren ( expr, parser:: PREC_JUMP ) ;
1530
1513
}
@@ -1536,20 +1519,20 @@ impl<'a> State<'a> {
1536
1519
self . print_ident ( label. ident ) ;
1537
1520
}
1538
1521
}
1539
- hir:: ExprKind :: Ret ( ref result) => {
1522
+ hir:: ExprKind :: Ret ( result) => {
1540
1523
self . word ( "return" ) ;
1541
- if let Some ( ref expr) = * result {
1524
+ if let Some ( expr) = result {
1542
1525
self . word ( " " ) ;
1543
- self . print_expr_maybe_paren ( & expr, parser:: PREC_JUMP ) ;
1526
+ self . print_expr_maybe_paren ( expr, parser:: PREC_JUMP ) ;
1544
1527
}
1545
1528
}
1546
- hir:: ExprKind :: InlineAsm ( ref asm) => {
1529
+ hir:: ExprKind :: InlineAsm ( asm) => {
1547
1530
self . word ( "asm!" ) ;
1548
1531
self . print_inline_asm ( asm) ;
1549
1532
}
1550
- hir:: ExprKind :: Yield ( ref expr, _) => {
1533
+ hir:: ExprKind :: Yield ( expr, _) => {
1551
1534
self . word_space ( "yield" ) ;
1552
- self . print_expr_maybe_paren ( & expr, parser:: PREC_JUMP ) ;
1535
+ self . print_expr_maybe_paren ( expr, parser:: PREC_JUMP ) ;
1553
1536
}
1554
1537
hir:: ExprKind :: Err => {
1555
1538
self . popen ( ) ;
@@ -1562,10 +1545,10 @@ impl<'a> State<'a> {
1562
1545
}
1563
1546
1564
1547
pub fn print_local_decl ( & mut self , loc : & hir:: Local < ' _ > ) {
1565
- self . print_pat ( & loc. pat ) ;
1566
- if let Some ( ref ty) = loc. ty {
1548
+ self . print_pat ( loc. pat ) ;
1549
+ if let Some ( ty) = loc. ty {
1567
1550
self . word_space ( ":" ) ;
1568
- self . print_type ( & ty) ;
1551
+ self . print_type ( ty) ;
1569
1552
}
1570
1553
}
1571
1554
@@ -1596,8 +1579,8 @@ impl<'a> State<'a> {
1596
1579
1597
1580
pub fn print_qpath ( & mut self , qpath : & hir:: QPath < ' _ > , colons_before_params : bool ) {
1598
1581
match * qpath {
1599
- hir:: QPath :: Resolved ( None , ref path) => self . print_path ( path, colons_before_params) ,
1600
- hir:: QPath :: Resolved ( Some ( ref qself) , ref path) => {
1582
+ hir:: QPath :: Resolved ( None , path) => self . print_path ( path, colons_before_params) ,
1583
+ hir:: QPath :: Resolved ( Some ( qself) , path) => {
1601
1584
self . word ( "<" ) ;
1602
1585
self . print_type ( qself) ;
1603
1586
self . space ( ) ;
@@ -1627,11 +1610,11 @@ impl<'a> State<'a> {
1627
1610
colons_before_params,
1628
1611
)
1629
1612
}
1630
- hir:: QPath :: TypeRelative ( ref qself, ref item_segment) => {
1613
+ hir:: QPath :: TypeRelative ( qself, item_segment) => {
1631
1614
// If we've got a compound-qualified-path, let's push an additional pair of angle
1632
1615
// brackets, so that we pretty-print `<<A::B>::C>` as `<A::B>::C`, instead of just
1633
1616
// `A::B::C` (since the latter could be ambiguous to the user)
1634
- if let hir:: TyKind :: Path ( hir:: QPath :: Resolved ( None , _) ) = & qself. kind {
1617
+ if let hir:: TyKind :: Path ( hir:: QPath :: Resolved ( None , _) ) = qself. kind {
1635
1618
self . print_type ( qself) ;
1636
1619
} else {
1637
1620
self . word ( "<" ) ;
@@ -1663,7 +1646,7 @@ impl<'a> State<'a> {
1663
1646
) {
1664
1647
if generic_args. parenthesized {
1665
1648
self . word ( "(" ) ;
1666
- self . commasep ( Inconsistent , generic_args. inputs ( ) , |s, ty| s. print_type ( & ty) ) ;
1649
+ self . commasep ( Inconsistent , generic_args. inputs ( ) , |s, ty| s. print_type ( ty) ) ;
1667
1650
self . word ( ")" ) ;
1668
1651
1669
1652
self . space_if_not_bol ( ) ;
@@ -1694,7 +1677,7 @@ impl<'a> State<'a> {
1694
1677
start_or_comma ( self ) ;
1695
1678
self . commasep (
1696
1679
Inconsistent ,
1697
- & generic_args. args ,
1680
+ generic_args. args ,
1698
1681
|s, generic_arg| match generic_arg {
1699
1682
GenericArg :: Lifetime ( lt) if !elide_lifetimes => s. print_lifetime ( lt) ,
1700
1683
GenericArg :: Lifetime ( _) => { }
@@ -1712,7 +1695,7 @@ impl<'a> State<'a> {
1712
1695
self . word ( ".." ) ;
1713
1696
}
1714
1697
1715
- for binding in generic_args. bindings . iter ( ) {
1698
+ for binding in generic_args. bindings {
1716
1699
start_or_comma ( self ) ;
1717
1700
self . print_type_binding ( binding) ;
1718
1701
}
@@ -1731,7 +1714,7 @@ impl<'a> State<'a> {
1731
1714
hir:: TypeBindingKind :: Equality { ref term } => {
1732
1715
self . word_space ( "=" ) ;
1733
1716
match term {
1734
- Term :: Ty ( ref ty) => self . print_type ( ty) ,
1717
+ Term :: Ty ( ty) => self . print_type ( ty) ,
1735
1718
Term :: Const ( ref c) => self . print_anon_const ( c) ,
1736
1719
}
1737
1720
}
@@ -1748,7 +1731,7 @@ impl<'a> State<'a> {
1748
1731
// is that it doesn't matter
1749
1732
match pat. kind {
1750
1733
PatKind :: Wild => self . word ( "_" ) ,
1751
- PatKind :: Binding ( binding_mode, _, ident, ref sub) => {
1734
+ PatKind :: Binding ( binding_mode, _, ident, sub) => {
1752
1735
match binding_mode {
1753
1736
hir:: BindingAnnotation :: Ref => {
1754
1737
self . word_nbsp ( "ref" ) ;
@@ -1764,33 +1747,33 @@ impl<'a> State<'a> {
1764
1747
}
1765
1748
}
1766
1749
self . print_ident ( ident) ;
1767
- if let Some ( ref p) = * sub {
1750
+ if let Some ( p) = sub {
1768
1751
self . word ( "@" ) ;
1769
- self . print_pat ( & p) ;
1752
+ self . print_pat ( p) ;
1770
1753
}
1771
1754
}
1772
- PatKind :: TupleStruct ( ref qpath, ref elts, ddpos) => {
1755
+ PatKind :: TupleStruct ( ref qpath, elts, ddpos) => {
1773
1756
self . print_qpath ( qpath, true ) ;
1774
1757
self . popen ( ) ;
1775
1758
if let Some ( ddpos) = ddpos {
1776
- self . commasep ( Inconsistent , & elts[ ..ddpos] , |s, p| s. print_pat ( & p) ) ;
1759
+ self . commasep ( Inconsistent , & elts[ ..ddpos] , |s, p| s. print_pat ( p) ) ;
1777
1760
if ddpos != 0 {
1778
1761
self . word_space ( "," ) ;
1779
1762
}
1780
1763
self . word ( ".." ) ;
1781
1764
if ddpos != elts. len ( ) {
1782
1765
self . word ( "," ) ;
1783
- self . commasep ( Inconsistent , & elts[ ddpos..] , |s, p| s. print_pat ( & p) ) ;
1766
+ self . commasep ( Inconsistent , & elts[ ddpos..] , |s, p| s. print_pat ( p) ) ;
1784
1767
}
1785
1768
} else {
1786
- self . commasep ( Inconsistent , & elts, |s, p| s. print_pat ( & p) ) ;
1769
+ self . commasep ( Inconsistent , elts, |s, p| s. print_pat ( p) ) ;
1787
1770
}
1788
1771
self . pclose ( ) ;
1789
1772
}
1790
1773
PatKind :: Path ( ref qpath) => {
1791
1774
self . print_qpath ( qpath, true ) ;
1792
1775
}
1793
- PatKind :: Struct ( ref qpath, ref fields, etc) => {
1776
+ PatKind :: Struct ( ref qpath, fields, etc) => {
1794
1777
self . print_qpath ( qpath, true ) ;
1795
1778
self . nbsp ( ) ;
1796
1779
self . word ( "{" ) ;
@@ -1800,14 +1783,14 @@ impl<'a> State<'a> {
1800
1783
}
1801
1784
self . commasep_cmnt (
1802
1785
Consistent ,
1803
- & fields,
1786
+ fields,
1804
1787
|s, f| {
1805
1788
s. cbox ( INDENT_UNIT ) ;
1806
1789
if !f. is_shorthand {
1807
1790
s. print_ident ( f. ident ) ;
1808
1791
s. word_nbsp ( ":" ) ;
1809
1792
}
1810
- s. print_pat ( & f. pat ) ;
1793
+ s. print_pat ( f. pat ) ;
1811
1794
s. end ( )
1812
1795
} ,
1813
1796
|f| f. pat . span ,
@@ -1823,83 +1806,83 @@ impl<'a> State<'a> {
1823
1806
}
1824
1807
self . word ( "}" ) ;
1825
1808
}
1826
- PatKind :: Or ( ref pats) => {
1827
- self . strsep ( "|" , true , Inconsistent , & pats, |s, p| s. print_pat ( & p) ) ;
1809
+ PatKind :: Or ( pats) => {
1810
+ self . strsep ( "|" , true , Inconsistent , pats, |s, p| s. print_pat ( p) ) ;
1828
1811
}
1829
- PatKind :: Tuple ( ref elts, ddpos) => {
1812
+ PatKind :: Tuple ( elts, ddpos) => {
1830
1813
self . popen ( ) ;
1831
1814
if let Some ( ddpos) = ddpos {
1832
- self . commasep ( Inconsistent , & elts[ ..ddpos] , |s, p| s. print_pat ( & p) ) ;
1815
+ self . commasep ( Inconsistent , & elts[ ..ddpos] , |s, p| s. print_pat ( p) ) ;
1833
1816
if ddpos != 0 {
1834
1817
self . word_space ( "," ) ;
1835
1818
}
1836
1819
self . word ( ".." ) ;
1837
1820
if ddpos != elts. len ( ) {
1838
1821
self . word ( "," ) ;
1839
- self . commasep ( Inconsistent , & elts[ ddpos..] , |s, p| s. print_pat ( & p) ) ;
1822
+ self . commasep ( Inconsistent , & elts[ ddpos..] , |s, p| s. print_pat ( p) ) ;
1840
1823
}
1841
1824
} else {
1842
- self . commasep ( Inconsistent , & elts[ .. ] , |s, p| s. print_pat ( & p) ) ;
1825
+ self . commasep ( Inconsistent , elts, |s, p| s. print_pat ( p) ) ;
1843
1826
if elts. len ( ) == 1 {
1844
1827
self . word ( "," ) ;
1845
1828
}
1846
1829
}
1847
1830
self . pclose ( ) ;
1848
1831
}
1849
- PatKind :: Box ( ref inner) => {
1832
+ PatKind :: Box ( inner) => {
1850
1833
let is_range_inner = matches ! ( inner. kind, PatKind :: Range ( ..) ) ;
1851
1834
self . word ( "box " ) ;
1852
1835
if is_range_inner {
1853
1836
self . popen ( ) ;
1854
1837
}
1855
- self . print_pat ( & inner) ;
1838
+ self . print_pat ( inner) ;
1856
1839
if is_range_inner {
1857
1840
self . pclose ( ) ;
1858
1841
}
1859
1842
}
1860
- PatKind :: Ref ( ref inner, mutbl) => {
1843
+ PatKind :: Ref ( inner, mutbl) => {
1861
1844
let is_range_inner = matches ! ( inner. kind, PatKind :: Range ( ..) ) ;
1862
1845
self . word ( "&" ) ;
1863
1846
self . word ( mutbl. prefix_str ( ) ) ;
1864
1847
if is_range_inner {
1865
1848
self . popen ( ) ;
1866
1849
}
1867
- self . print_pat ( & inner) ;
1850
+ self . print_pat ( inner) ;
1868
1851
if is_range_inner {
1869
1852
self . pclose ( ) ;
1870
1853
}
1871
1854
}
1872
- PatKind :: Lit ( ref e) => self . print_expr ( & e) ,
1873
- PatKind :: Range ( ref begin, ref end, ref end_kind) => {
1855
+ PatKind :: Lit ( e) => self . print_expr ( e) ,
1856
+ PatKind :: Range ( begin, end, end_kind) => {
1874
1857
if let Some ( expr) = begin {
1875
1858
self . print_expr ( expr) ;
1876
1859
}
1877
- match * end_kind {
1860
+ match end_kind {
1878
1861
RangeEnd :: Included => self . word ( "..." ) ,
1879
1862
RangeEnd :: Excluded => self . word ( ".." ) ,
1880
1863
}
1881
1864
if let Some ( expr) = end {
1882
1865
self . print_expr ( expr) ;
1883
1866
}
1884
1867
}
1885
- PatKind :: Slice ( ref before, ref slice, ref after) => {
1868
+ PatKind :: Slice ( before, slice, after) => {
1886
1869
self . word ( "[" ) ;
1887
- self . commasep ( Inconsistent , & before, |s, p| s. print_pat ( & p) ) ;
1888
- if let Some ( ref p) = * slice {
1870
+ self . commasep ( Inconsistent , before, |s, p| s. print_pat ( p) ) ;
1871
+ if let Some ( p) = slice {
1889
1872
if !before. is_empty ( ) {
1890
1873
self . word_space ( "," ) ;
1891
1874
}
1892
1875
if let PatKind :: Wild = p. kind {
1893
1876
// Print nothing.
1894
1877
} else {
1895
- self . print_pat ( & p) ;
1878
+ self . print_pat ( p) ;
1896
1879
}
1897
1880
self . word ( ".." ) ;
1898
1881
if !after. is_empty ( ) {
1899
1882
self . word_space ( "," ) ;
1900
1883
}
1901
1884
}
1902
- self . commasep ( Inconsistent , & after, |s, p| s. print_pat ( & p) ) ;
1885
+ self . commasep ( Inconsistent , after, |s, p| s. print_pat ( p) ) ;
1903
1886
self . word ( "]" ) ;
1904
1887
}
1905
1888
}
@@ -1908,7 +1891,7 @@ impl<'a> State<'a> {
1908
1891
1909
1892
pub fn print_param ( & mut self , arg : & hir:: Param < ' _ > ) {
1910
1893
self . print_outer_attributes ( self . attrs ( arg. hir_id ) ) ;
1911
- self . print_pat ( & arg. pat ) ;
1894
+ self . print_pat ( arg. pat ) ;
1912
1895
}
1913
1896
1914
1897
pub fn print_arm ( & mut self , arm : & hir:: Arm < ' _ > ) {
@@ -1920,32 +1903,32 @@ impl<'a> State<'a> {
1920
1903
self . cbox ( INDENT_UNIT ) ;
1921
1904
self . ann . pre ( self , AnnNode :: Arm ( arm) ) ;
1922
1905
self . ibox ( 0 ) ;
1923
- self . print_outer_attributes ( & self . attrs ( arm. hir_id ) ) ;
1924
- self . print_pat ( & arm. pat ) ;
1906
+ self . print_outer_attributes ( self . attrs ( arm. hir_id ) ) ;
1907
+ self . print_pat ( arm. pat ) ;
1925
1908
self . space ( ) ;
1926
1909
if let Some ( ref g) = arm. guard {
1927
- match g {
1910
+ match * g {
1928
1911
hir:: Guard :: If ( e) => {
1929
1912
self . word_space ( "if" ) ;
1930
- self . print_expr ( & e) ;
1913
+ self . print_expr ( e) ;
1931
1914
self . space ( ) ;
1932
1915
}
1933
- hir:: Guard :: IfLet ( hir:: Let { pat, ty, init, .. } ) => {
1916
+ hir:: Guard :: IfLet ( & hir:: Let { pat, ty, init, .. } ) => {
1934
1917
self . word_nbsp ( "if" ) ;
1935
- self . print_let ( pat, * ty, init) ;
1918
+ self . print_let ( pat, ty, init) ;
1936
1919
}
1937
1920
}
1938
1921
}
1939
1922
self . word_space ( "=>" ) ;
1940
1923
1941
1924
match arm. body . kind {
1942
- hir:: ExprKind :: Block ( ref blk, opt_label) => {
1925
+ hir:: ExprKind :: Block ( blk, opt_label) => {
1943
1926
if let Some ( label) = opt_label {
1944
1927
self . print_ident ( label. ident ) ;
1945
1928
self . word_space ( ":" ) ;
1946
1929
}
1947
1930
// the block will close the pattern's ibox
1948
- self . print_block_unclosed ( & blk) ;
1931
+ self . print_block_unclosed ( blk) ;
1949
1932
1950
1933
// If it is a user-provided unsafe block, print a comma after it
1951
1934
if let hir:: BlockCheckMode :: UnsafeBlock ( hir:: UnsafeSource :: UserProvided ) = blk. rules
@@ -1955,7 +1938,7 @@ impl<'a> State<'a> {
1955
1938
}
1956
1939
_ => {
1957
1940
self . end ( ) ; // close the ibox for the pattern
1958
- self . print_expr ( & arm. body ) ;
1941
+ self . print_expr ( arm. body ) ;
1959
1942
self . word ( "," ) ;
1960
1943
}
1961
1944
}
@@ -1978,13 +1961,13 @@ impl<'a> State<'a> {
1978
1961
self . nbsp ( ) ;
1979
1962
self . print_name ( name) ;
1980
1963
}
1981
- self . print_generic_params ( & generics. params ) ;
1964
+ self . print_generic_params ( generics. params ) ;
1982
1965
1983
1966
self . popen ( ) ;
1984
1967
let mut i = 0 ;
1985
1968
// Make sure we aren't supplied *both* `arg_names` and `body_id`.
1986
1969
assert ! ( arg_names. is_empty( ) || body_id. is_none( ) ) ;
1987
- self . commasep ( Inconsistent , & decl. inputs , |s, ty| {
1970
+ self . commasep ( Inconsistent , decl. inputs , |s, ty| {
1988
1971
s. ibox ( INDENT_UNIT ) ;
1989
1972
if let Some ( arg_name) = arg_names. get ( i) {
1990
1973
s. word ( arg_name. to_string ( ) ) ;
@@ -2011,7 +1994,7 @@ impl<'a> State<'a> {
2011
1994
fn print_closure_params ( & mut self , decl : & hir:: FnDecl < ' _ > , body_id : hir:: BodyId ) {
2012
1995
self . word ( "|" ) ;
2013
1996
let mut i = 0 ;
2014
- self . commasep ( Inconsistent , & decl. inputs , |s, ty| {
1997
+ self . commasep ( Inconsistent , decl. inputs , |s, ty| {
2015
1998
s. ibox ( INDENT_UNIT ) ;
2016
1999
2017
2000
s. ann . nested ( s, Nested :: BodyParamPat ( body_id, i) ) ;
@@ -2035,8 +2018,8 @@ impl<'a> State<'a> {
2035
2018
self . space_if_not_bol ( ) ;
2036
2019
self . word_space ( "->" ) ;
2037
2020
match decl. output {
2038
- hir:: FnRetTy :: Return ( ref ty) => {
2039
- self . print_type ( & ty) ;
2021
+ hir:: FnRetTy :: Return ( ty) => {
2022
+ self . print_type ( ty) ;
2040
2023
self . maybe_print_comment ( ty. span . lo ( ) ) ;
2041
2024
}
2042
2025
hir:: FnRetTy :: DefaultReturn ( ..) => unreachable ! ( ) ,
@@ -2107,20 +2090,20 @@ impl<'a> State<'a> {
2107
2090
2108
2091
match param. kind {
2109
2092
GenericParamKind :: Lifetime { .. } => { }
2110
- GenericParamKind :: Type { ref default, .. } => {
2093
+ GenericParamKind :: Type { default, .. } => {
2111
2094
if let Some ( default) = default {
2112
2095
self . space ( ) ;
2113
2096
self . word_space ( "=" ) ;
2114
- self . print_type ( & default)
2097
+ self . print_type ( default) ;
2115
2098
}
2116
2099
}
2117
- GenericParamKind :: Const { ref ty, ref default } => {
2100
+ GenericParamKind :: Const { ty, ref default } => {
2118
2101
self . word_space ( ":" ) ;
2119
2102
self . print_type ( ty) ;
2120
- if let Some ( ref default) = default {
2103
+ if let Some ( default) = default {
2121
2104
self . space ( ) ;
2122
2105
self . word_space ( "=" ) ;
2123
- self . print_anon_const ( & default)
2106
+ self . print_anon_const ( default) ;
2124
2107
}
2125
2108
}
2126
2109
}
@@ -2143,19 +2126,19 @@ impl<'a> State<'a> {
2143
2126
self . word_space ( "," ) ;
2144
2127
}
2145
2128
2146
- match predicate {
2129
+ match * predicate {
2147
2130
hir:: WherePredicate :: BoundPredicate ( hir:: WhereBoundPredicate {
2148
2131
bound_generic_params,
2149
2132
bounded_ty,
2150
2133
bounds,
2151
2134
..
2152
2135
} ) => {
2153
2136
self . print_formal_generic_params ( bound_generic_params) ;
2154
- self . print_type ( & bounded_ty) ;
2155
- self . print_bounds ( ":" , * bounds) ;
2137
+ self . print_type ( bounded_ty) ;
2138
+ self . print_bounds ( ":" , bounds) ;
2156
2139
}
2157
2140
hir:: WherePredicate :: RegionPredicate ( hir:: WhereRegionPredicate {
2158
- lifetime,
2141
+ ref lifetime,
2159
2142
bounds,
2160
2143
..
2161
2144
} ) => {
@@ -2200,7 +2183,7 @@ impl<'a> State<'a> {
2200
2183
2201
2184
pub fn print_mt ( & mut self , mt : & hir:: MutTy < ' _ > , print_const : bool ) {
2202
2185
self . print_mutability ( mt. mutbl , print_const) ;
2203
- self . print_type ( & mt. ty )
2186
+ self . print_type ( mt. ty ) ;
2204
2187
}
2205
2188
2206
2189
pub fn print_fn_output ( & mut self , decl : & hir:: FnDecl < ' _ > ) {
@@ -2213,11 +2196,11 @@ impl<'a> State<'a> {
2213
2196
self . word_space ( "->" ) ;
2214
2197
match decl. output {
2215
2198
hir:: FnRetTy :: DefaultReturn ( ..) => unreachable ! ( ) ,
2216
- hir:: FnRetTy :: Return ( ref ty) => self . print_type ( & ty) ,
2199
+ hir:: FnRetTy :: Return ( ty) => self . print_type ( ty) ,
2217
2200
}
2218
2201
self . end ( ) ;
2219
2202
2220
- if let hir:: FnRetTy :: Return ( ref output) = decl. output {
2203
+ if let hir:: FnRetTy :: Return ( output) = decl. output {
2221
2204
self . maybe_print_comment ( output. span . lo ( ) ) ;
2222
2205
}
2223
2206
}
@@ -2243,7 +2226,7 @@ impl<'a> State<'a> {
2243
2226
asyncness : hir:: IsAsync :: NotAsync ,
2244
2227
} ,
2245
2228
name,
2246
- & generics,
2229
+ generics,
2247
2230
arg_names,
2248
2231
None ,
2249
2232
) ;
@@ -2312,7 +2295,7 @@ fn stmt_ends_with_semi(stmt: &hir::StmtKind<'_>) -> bool {
2312
2295
match * stmt {
2313
2296
hir:: StmtKind :: Local ( _) => true ,
2314
2297
hir:: StmtKind :: Item ( _) => false ,
2315
- hir:: StmtKind :: Expr ( ref e) => expr_requires_semi_to_be_stmt ( & e) ,
2298
+ hir:: StmtKind :: Expr ( e) => expr_requires_semi_to_be_stmt ( e) ,
2316
2299
hir:: StmtKind :: Semi ( ..) => false ,
2317
2300
}
2318
2301
}
@@ -2351,22 +2334,22 @@ fn contains_exterior_struct_lit(value: &hir::Expr<'_>) -> bool {
2351
2334
match value. kind {
2352
2335
hir:: ExprKind :: Struct ( ..) => true ,
2353
2336
2354
- hir:: ExprKind :: Assign ( ref lhs, ref rhs, _)
2355
- | hir:: ExprKind :: AssignOp ( _, ref lhs, ref rhs)
2356
- | hir:: ExprKind :: Binary ( _, ref lhs, ref rhs) => {
2337
+ hir:: ExprKind :: Assign ( lhs, rhs, _)
2338
+ | hir:: ExprKind :: AssignOp ( _, lhs, rhs)
2339
+ | hir:: ExprKind :: Binary ( _, lhs, rhs) => {
2357
2340
// `X { y: 1 } + X { y: 2 }`
2358
- contains_exterior_struct_lit ( & lhs) || contains_exterior_struct_lit ( & rhs)
2341
+ contains_exterior_struct_lit ( lhs) || contains_exterior_struct_lit ( rhs)
2359
2342
}
2360
- hir:: ExprKind :: Unary ( _, ref x)
2361
- | hir:: ExprKind :: Cast ( ref x, _)
2362
- | hir:: ExprKind :: Type ( ref x, _)
2363
- | hir:: ExprKind :: Field ( ref x, _)
2364
- | hir:: ExprKind :: Index ( ref x, _) => {
2343
+ hir:: ExprKind :: Unary ( _, x)
2344
+ | hir:: ExprKind :: Cast ( x, _)
2345
+ | hir:: ExprKind :: Type ( x, _)
2346
+ | hir:: ExprKind :: Field ( x, _)
2347
+ | hir:: ExprKind :: Index ( x, _) => {
2365
2348
// `&X { y: 1 }, X { y: 1 }.y`
2366
- contains_exterior_struct_lit ( & x)
2349
+ contains_exterior_struct_lit ( x)
2367
2350
}
2368
2351
2369
- hir:: ExprKind :: MethodCall ( .., ref exprs, _) => {
2352
+ hir:: ExprKind :: MethodCall ( .., exprs, _) => {
2370
2353
// `X { y: 1 }.bar(...)`
2371
2354
contains_exterior_struct_lit ( & exprs[ 0 ] )
2372
2355
}
0 commit comments