Skip to content

Commit 5085bf5

Browse files
committed
Auto merge of #119163 - fmease:refactor-ast-trait-bound-modifiers, r=compiler-errors
Refactor AST trait bound modifiers Instead of having two types to represent trait bound modifiers in the parser / the AST (`parser::ty::BoundModifiers` & `ast::TraitBoundModifier`), only to map one to the other later, just use `parser::ty::BoundModifiers` (moved & renamed to `ast::TraitBoundModifiers`). The struct type is more extensible and easier to deal with (see [here](https://github.com/rust-lang/rust/pull/119099/files#r1430749981) and [here](https://github.com/rust-lang/rust/pull/119099/files#r1430752116) for context) since it more closely models what it represents: A compound of two kinds of modifiers, constness and polarity. Modeling this as an enum (the now removed `ast::TraitBoundModifier`) meant one had to add a new variant per *combination* of modifier kind, which simply isn't scalable and which lead to a lot of explicit non-DRY matches. NB: `hir::TraitBoundModifier` being an enum is fine since HIR doesn't need to worry representing invalid modifier kind combinations as those get rejected during AST validation thereby immensely cutting down the number of possibilities.
2 parents df30a7a + 60419aa commit 5085bf5

File tree

1 file changed

+11
-20
lines changed

1 file changed

+11
-20
lines changed

src/types.rs

+11-20
Original file line numberDiff line numberDiff line change
@@ -537,28 +537,19 @@ impl Rewrite for ast::Lifetime {
537537
impl Rewrite for ast::GenericBound {
538538
fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String> {
539539
match *self {
540-
ast::GenericBound::Trait(ref poly_trait_ref, trait_bound_modifier) => {
540+
ast::GenericBound::Trait(ref poly_trait_ref, modifiers) => {
541541
let snippet = context.snippet(self.span());
542542
let has_paren = snippet.starts_with('(') && snippet.ends_with(')');
543-
let rewrite = match trait_bound_modifier {
544-
ast::TraitBoundModifier::None => poly_trait_ref.rewrite(context, shape),
545-
ast::TraitBoundModifier::Maybe => poly_trait_ref
546-
.rewrite(context, shape.offset_left(1)?)
547-
.map(|s| format!("?{}", s)),
548-
ast::TraitBoundModifier::MaybeConst(_) => poly_trait_ref
549-
.rewrite(context, shape.offset_left(7)?)
550-
.map(|s| format!("~const {}", s)),
551-
ast::TraitBoundModifier::MaybeConstMaybe => poly_trait_ref
552-
.rewrite(context, shape.offset_left(8)?)
553-
.map(|s| format!("~const ?{}", s)),
554-
ast::TraitBoundModifier::Negative => poly_trait_ref
555-
.rewrite(context, shape.offset_left(1)?)
556-
.map(|s| format!("!{}", s)),
557-
ast::TraitBoundModifier::MaybeConstNegative => poly_trait_ref
558-
.rewrite(context, shape.offset_left(8)?)
559-
.map(|s| format!("~const !{}", s)),
560-
};
561-
rewrite.map(|s| if has_paren { format!("({})", s) } else { s })
543+
let mut constness = modifiers.constness.as_str().to_string();
544+
if !constness.is_empty() {
545+
constness.push(' ');
546+
}
547+
let polarity = modifiers.polarity.as_str();
548+
let shape = shape.offset_left(constness.len() + polarity.len())?;
549+
poly_trait_ref
550+
.rewrite(context, shape)
551+
.map(|s| format!("{constness}{polarity}{s}"))
552+
.map(|s| if has_paren { format!("({})", s) } else { s })
562553
}
563554
ast::GenericBound::Outlives(ref lifetime) => lifetime.rewrite(context, shape),
564555
}

0 commit comments

Comments
 (0)