Skip to content

Commit 6e87f86

Browse files
authored
Rollup merge of #114434 - Nilstrieb:indexing-spans, r=est31
Improve spans for indexing expressions fixes #114388 Indexing is similar to method calls in having an arbitrary left-hand-side and then something on the right, which is the main part of the expression. Method calls already have a span for that right part, but indexing does not. This means that long method chains that use indexing have really bad spans, especially when the indexing panics and that span in coverted into a panic location. This does the same thing as method calls for the AST and HIR, storing an extra span which is then put into the `fn_span` field in THIR. r? compiler-errors
2 parents 4cc22af + aca22c7 commit 6e87f86

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)