Skip to content

Commit 14101ed

Browse files
committed
Remove MacDelimiter.
It's the same as `Delimiter`, minus the `Invisible` variant. I'm generally in favour of using types to make impossible states unrepresentable, but this one feels very low-value, and the conversions between the two types are annoying and confusing. Look at the change in `src/tools/rustfmt/src/expr.rs` for an example: the old code converted from `MacDelimiter` to `Delimiter` and back again, for no good reason. This suggests the author was confused about the types.
1 parent 1f369f8 commit 14101ed

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/expr.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -1382,12 +1382,8 @@ pub(crate) fn can_be_overflowed_expr(
13821382
|| (context.use_block_indent() && args_len == 1)
13831383
}
13841384
ast::ExprKind::MacCall(ref mac) => {
1385-
match (
1386-
rustc_ast::ast::MacDelimiter::from_token(mac.args.delim.to_token()),
1387-
context.config.overflow_delimited_expr(),
1388-
) {
1389-
(Some(ast::MacDelimiter::Bracket), true)
1390-
| (Some(ast::MacDelimiter::Brace), true) => true,
1385+
match (mac.args.delim, context.config.overflow_delimited_expr()) {
1386+
(Delimiter::Bracket, true) | (Delimiter::Brace, true) => true,
13911387
_ => context.use_block_indent() && args_len == 1,
13921388
}
13931389
}

0 commit comments

Comments
 (0)