Skip to content

Commit f8d0dbd

Browse files
committed
hir::Generics: convert has_where_clause_predicates field into method
1 parent 7308c22 commit f8d0dbd

File tree

6 files changed

+13
-18
lines changed

6 files changed

+13
-18
lines changed

compiler/rustc_ast_lowering/src/item.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,6 @@ impl<'hir> LoweringContext<'_, 'hir> {
13761376
self.lifetime_res_to_generic_param(ident, node_id, res)
13771377
}));
13781378

1379-
let has_where_clause_predicates = !generics.where_clause.predicates.is_empty();
13801379
let where_clause_span = self.lower_span(generics.where_clause.span);
13811380
let span = self.lower_span(generics.span);
13821381
let res = f(self);
@@ -1390,7 +1389,6 @@ impl<'hir> LoweringContext<'_, 'hir> {
13901389
let lowered_generics = self.arena.alloc(hir::Generics {
13911390
params: self.arena.alloc_from_iter(params),
13921391
predicates: self.arena.alloc_from_iter(predicates),
1393-
has_where_clause_predicates,
13941392
where_clause_span,
13951393
span,
13961394
});

compiler/rustc_ast_lowering/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,6 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
14011401
generics: self.arena.alloc(hir::Generics {
14021402
params: lifetime_defs,
14031403
predicates: &[],
1404-
has_where_clause_predicates: false,
14051404
where_clause_span: lctx.lower_span(span),
14061405
span: lctx.lower_span(span),
14071406
}),
@@ -1717,7 +1716,6 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
17171716
generics: this.arena.alloc(hir::Generics {
17181717
params: generic_params,
17191718
predicates: &[],
1720-
has_where_clause_predicates: false,
17211719
where_clause_span: this.lower_span(span),
17221720
span: this.lower_span(span),
17231721
}),

compiler/rustc_hir/src/hir.rs

+9-11
Original file line numberDiff line numberDiff line change
@@ -528,20 +528,14 @@ pub struct GenericParamCount {
528528
pub struct Generics<'hir> {
529529
pub params: &'hir [GenericParam<'hir>],
530530
pub predicates: &'hir [WherePredicate<'hir>],
531-
pub has_where_clause_predicates: bool,
532531
pub where_clause_span: Span,
533532
pub span: Span,
534533
}
535534

536535
impl<'hir> Generics<'hir> {
537536
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 };
545539
&NOPE
546540
}
547541

@@ -578,7 +572,7 @@ impl<'hir> Generics<'hir> {
578572
/// in `fn foo<T>(t: T) where T: Foo,` so we don't suggest two trailing commas.
579573
pub fn tail_span_for_predicate_suggestion(&self) -> Span {
580574
let end = self.where_clause_span.shrink_to_hi();
581-
if self.has_where_clause_predicates {
575+
if self.has_where_clause_predicates() {
582576
self.predicates
583577
.iter()
584578
.filter(|p| p.in_where_clause())
@@ -592,7 +586,7 @@ impl<'hir> Generics<'hir> {
592586
}
593587

594588
pub fn add_where_or_trailing_comma(&self) -> &'static str {
595-
if self.has_where_clause_predicates {
589+
if self.has_where_clause_predicates() {
596590
","
597591
} else if self.where_clause_span.is_empty() {
598592
" where"
@@ -689,6 +683,10 @@ impl<'hir> Generics<'hir> {
689683
bounds[bound_pos - 1].span().shrink_to_hi().to(span)
690684
}
691685
}
686+
687+
pub fn has_where_clause_predicates(&self) -> bool {
688+
!self.where_clause_span.is_empty()
689+
}
692690
}
693691

694692
/// A single predicate in a where-clause.
@@ -3495,7 +3493,7 @@ mod size_asserts {
34953493
rustc_data_structures::static_assert_size!(Expr<'static>, 56);
34963494
rustc_data_structures::static_assert_size!(ForeignItem<'static>, 72);
34973495
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);
34993497
rustc_data_structures::static_assert_size!(ImplItem<'static>, 88);
35003498
rustc_data_structures::static_assert_size!(Impl<'static>, 80);
35013499
rustc_data_structures::static_assert_size!(Item<'static>, 80);

compiler/rustc_lint/src/builtin.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2244,7 +2244,8 @@ impl<'tcx> LateLintPass<'tcx> for ExplicitOutlivesRequirements {
22442244

22452245
// If all predicates are inferable, drop the entire clause
22462246
// (including the `where`)
2247-
if hir_generics.has_where_clause_predicates && dropped_predicate_count == num_predicates
2247+
if hir_generics.has_where_clause_predicates()
2248+
&& dropped_predicate_count == num_predicates
22482249
{
22492250
let where_span = hir_generics.where_clause_span;
22502251
// Extend the where clause back to the closing `>` of the

compiler/rustc_middle/src/ty/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ pub fn suggest_constraining_type_params<'a>(
277277
continue;
278278
}
279279

280-
if generics.has_where_clause_predicates {
280+
if generics.has_where_clause_predicates() {
281281
// This part is a bit tricky, because using the `where` clause user can
282282
// provide zero, one or many bounds for the same type parameter, so we
283283
// have following cases to consider:

compiler/rustc_typeck/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ fn check_start_fn_ty(tcx: TyCtxt<'_>, start_def_id: DefId) {
393393
.emit();
394394
error = true;
395395
}
396-
if generics.has_where_clause_predicates {
396+
if generics.has_where_clause_predicates() {
397397
struct_span_err!(
398398
tcx.sess,
399399
generics.where_clause_span,

0 commit comments

Comments
 (0)