@@ -528,20 +528,14 @@ pub struct GenericParamCount {
528
528
pub struct Generics < ' hir > {
529
529
pub params : & ' hir [ GenericParam < ' hir > ] ,
530
530
pub predicates : & ' hir [ WherePredicate < ' hir > ] ,
531
- pub has_where_clause_predicates : bool ,
532
531
pub where_clause_span : Span ,
533
532
pub span : Span ,
534
533
}
535
534
536
535
impl < ' hir > Generics < ' hir > {
537
536
pub const fn empty ( ) -> & ' hir Generics < ' hir > {
538
- const NOPE : Generics < ' _ > = Generics {
539
- params : & [ ] ,
540
- predicates : & [ ] ,
541
- has_where_clause_predicates : false ,
542
- where_clause_span : DUMMY_SP ,
543
- span : DUMMY_SP ,
544
- } ;
537
+ const NOPE : Generics < ' _ > =
538
+ Generics { params : & [ ] , predicates : & [ ] , where_clause_span : DUMMY_SP , span : DUMMY_SP } ;
545
539
& NOPE
546
540
}
547
541
@@ -578,7 +572,7 @@ impl<'hir> Generics<'hir> {
578
572
/// in `fn foo<T>(t: T) where T: Foo,` so we don't suggest two trailing commas.
579
573
pub fn tail_span_for_predicate_suggestion ( & self ) -> Span {
580
574
let end = self . where_clause_span . shrink_to_hi ( ) ;
581
- if self . has_where_clause_predicates {
575
+ if self . has_where_clause_predicates ( ) {
582
576
self . predicates
583
577
. iter ( )
584
578
. filter ( |p| p. in_where_clause ( ) )
@@ -592,7 +586,7 @@ impl<'hir> Generics<'hir> {
592
586
}
593
587
594
588
pub fn add_where_or_trailing_comma ( & self ) -> & ' static str {
595
- if self . has_where_clause_predicates {
589
+ if self . has_where_clause_predicates ( ) {
596
590
","
597
591
} else if self . where_clause_span . is_empty ( ) {
598
592
" where"
@@ -689,6 +683,10 @@ impl<'hir> Generics<'hir> {
689
683
bounds[ bound_pos - 1 ] . span ( ) . shrink_to_hi ( ) . to ( span)
690
684
}
691
685
}
686
+
687
+ pub fn has_where_clause_predicates ( & self ) -> bool {
688
+ !self . where_clause_span . is_empty ( )
689
+ }
692
690
}
693
691
694
692
/// A single predicate in a where-clause.
@@ -3495,7 +3493,7 @@ mod size_asserts {
3495
3493
rustc_data_structures:: static_assert_size!( Expr <' static >, 56 ) ;
3496
3494
rustc_data_structures:: static_assert_size!( ForeignItem <' static >, 72 ) ;
3497
3495
rustc_data_structures:: static_assert_size!( GenericBound <' _>, 48 ) ;
3498
- rustc_data_structures:: static_assert_size!( Generics <' static >, 56 ) ;
3496
+ rustc_data_structures:: static_assert_size!( Generics <' static >, 48 ) ;
3499
3497
rustc_data_structures:: static_assert_size!( ImplItem <' static >, 88 ) ;
3500
3498
rustc_data_structures:: static_assert_size!( Impl <' static >, 80 ) ;
3501
3499
rustc_data_structures:: static_assert_size!( Item <' static >, 80 ) ;
0 commit comments