Skip to content

Commit 327903e

Browse files
committed
Auto merge of #114481 - matthiaskrgr:rollup-58pczpl, r=matthiaskrgr
Rollup of 9 pull requests Successful merges: - #113945 (Fix wrong span for trait selection failure error reporting) - #114351 ([rustc_span][perf] Remove unnecessary string joins and allocs.) - #114418 (bump parking_lot to 0.12) - #114434 (Improve spans for indexing expressions) - #114450 (Fix ICE failed to get layout for ReferencesError) - #114461 (Fix unwrap on None) - #114462 (interpret: add mplace_to_ref helper method) - #114472 (Reword `confusable_idents` lint) - #114477 (Account for `Rc` and `Arc` when suggesting to clone) r? `@ghost` `@rustbot` modify labels: rollup
2 parents e3d6bf8 + 6e87f86 commit 327903e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/expr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ pub(crate) fn format_expr(
256256
shape,
257257
SeparatorPlace::Back,
258258
),
259-
ast::ExprKind::Index(ref expr, ref index) => {
259+
ast::ExprKind::Index(ref expr, ref index, _) => {
260260
rewrite_index(&**expr, &**index, context, shape)
261261
}
262262
ast::ExprKind::Repeat(ref expr, ref repeats) => rewrite_pair(
@@ -1342,7 +1342,7 @@ pub(crate) fn is_simple_expr(expr: &ast::Expr) -> bool {
13421342
| ast::ExprKind::Field(ref expr, _)
13431343
| ast::ExprKind::Try(ref expr)
13441344
| ast::ExprKind::Unary(_, ref expr) => is_simple_expr(expr),
1345-
ast::ExprKind::Index(ref lhs, ref rhs) => is_simple_expr(lhs) && is_simple_expr(rhs),
1345+
ast::ExprKind::Index(ref lhs, ref rhs, _) => is_simple_expr(lhs) && is_simple_expr(rhs),
13461346
ast::ExprKind::Repeat(ref lhs, ref rhs) => {
13471347
is_simple_expr(lhs) && is_simple_expr(&*rhs.value)
13481348
}

src/matches.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ fn can_flatten_block_around_this(body: &ast::Expr) -> bool {
594594
ast::ExprKind::AddrOf(_, _, ref expr)
595595
| ast::ExprKind::Try(ref expr)
596596
| ast::ExprKind::Unary(_, ref expr)
597-
| ast::ExprKind::Index(ref expr, _)
597+
| ast::ExprKind::Index(ref expr, _, _)
598598
| ast::ExprKind::Cast(ref expr, _) => can_flatten_block_around_this(expr),
599599
_ => false,
600600
}

src/utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ pub(crate) fn left_most_sub_expr(e: &ast::Expr) -> &ast::Expr {
441441
| ast::ExprKind::Assign(ref e, _, _)
442442
| ast::ExprKind::AssignOp(_, ref e, _)
443443
| ast::ExprKind::Field(ref e, _)
444-
| ast::ExprKind::Index(ref e, _)
444+
| ast::ExprKind::Index(ref e, _, _)
445445
| ast::ExprKind::Range(Some(ref e), _, _)
446446
| ast::ExprKind::Try(ref e) => left_most_sub_expr(e),
447447
_ => e,
@@ -479,7 +479,7 @@ pub(crate) fn is_block_expr(context: &RewriteContext<'_>, expr: &ast::Expr, repr
479479
| ast::ExprKind::Match(..) => repr.contains('\n'),
480480
ast::ExprKind::Paren(ref expr)
481481
| ast::ExprKind::Binary(_, _, ref expr)
482-
| ast::ExprKind::Index(_, ref expr)
482+
| ast::ExprKind::Index(_, ref expr, _)
483483
| ast::ExprKind::Unary(_, ref expr)
484484
| ast::ExprKind::Try(ref expr)
485485
| ast::ExprKind::Yield(Some(ref expr)) => is_block_expr(context, expr, repr),

0 commit comments

Comments
 (0)