Skip to content

Commit 1c3fb62

Browse files
authored
Unrolled build for rust-lang#128864
Rollup merge of rust-lang#128864 - jieyouxu:funnicode, r=Urgau Use `SourceMap::end_point` instead of `- BytePos(1)` in arg removal suggestion Previously, we tried to remove extra arg commas when providing extra arg removal suggestions. One of the edge cases is having to account for an arg that has a closing delimiter `)` following it. However, the previous suggestion code assumed that the delimiter is in fact exactly the 1-byte `)` character. This assumption was proven incorrect, because we recover from Unicode-confusable delimiters in the parser, which means that the ending delimiter could be a multi-byte codepoint that looks *like* a `)`. Subtracing 1 byte could land us in the middle of a codepoint, triggering a codepoint boundary assertion. This is fixed by using `SourceMap::end_point` which properly accounts for codepoint boundaries. Fixes rust-lang#128717. cc ````@fmease```` and rust-lang#128790
2 parents 899eb03 + 879bfd7 commit 1c3fb62

File tree

3 files changed

+63
-3
lines changed

3 files changed

+63
-3
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use rustc_middle::ty::{self, IsSuggestable, Ty, TyCtxt};
2222
use rustc_middle::{bug, span_bug};
2323
use rustc_session::Session;
2424
use rustc_span::symbol::{kw, Ident};
25-
use rustc_span::{sym, BytePos, Span, DUMMY_SP};
25+
use rustc_span::{sym, Span, DUMMY_SP};
2626
use rustc_trait_selection::error_reporting::infer::{FailureCode, ObligationCauseExt};
2727
use rustc_trait_selection::infer::InferCtxtExt;
2828
use rustc_trait_selection::traits::{self, ObligationCauseCode, SelectionContext};
@@ -1140,8 +1140,11 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
11401140
.get(arg_idx + 1)
11411141
.map(|&(_, sp)| sp)
11421142
.unwrap_or_else(|| {
1143-
// Subtract one to move before `)`
1144-
call_expr.span.with_lo(call_expr.span.hi() - BytePos(1))
1143+
// Try to move before `)`. Note that `)` here is not necessarily
1144+
// the latin right paren, it could be a Unicode-confusable that
1145+
// looks like a `)`, so we must not use `- BytePos(1)`
1146+
// manipulations here.
1147+
self.tcx().sess.source_map().end_point(call_expr.span)
11451148
});
11461149

11471150
// Include next comma
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//! Previously, we tried to remove extra arg commas when providing extra arg removal suggestions.
2+
//! One of the edge cases is having to account for an arg that has a closing delimiter `)`
3+
//! following it. However, the previous suggestion code assumed that the delimiter is in fact
4+
//! exactly the 1-byte `)` character. This assumption was proven incorrect, because we recover
5+
//! from Unicode-confusable delimiters in the parser, which means that the ending delimiter could be
6+
//! a multi-byte codepoint that looks *like* a `)`. Subtracing 1 byte could land us in the middle of
7+
//! a codepoint, triggering a codepoint boundary assertion.
8+
//!
9+
//! issue: rust-lang/rust#128717
10+
11+
fn main() {
12+
// The following example has been modified from #128717 to remove irrelevant Unicode as they do
13+
// not otherwise partake in the right delimiter calculation causing the codepoint boundary
14+
// assertion.
15+
main(rahh);
16+
//~^ ERROR unknown start of token
17+
//~| ERROR this function takes 0 arguments but 1 argument was supplied
18+
//~| ERROR cannot find value `rahh` in this scope
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
error: unknown start of token: \u{ff09}
2+
--> $DIR/suggest-arg-comma-delete-ice.rs:15:14
3+
|
4+
LL | main(rahh);
5+
| ^^
6+
|
7+
help: Unicode character ')' (Fullwidth Right Parenthesis) looks like ')' (Right Parenthesis), but it is not
8+
|
9+
LL | main(rahh);
10+
| ~
11+
12+
error[E0425]: cannot find value `rahh` in this scope
13+
--> $DIR/suggest-arg-comma-delete-ice.rs:15:10
14+
|
15+
LL | main(rahh);
16+
| ^^^^ not found in this scope
17+
18+
error[E0061]: this function takes 0 arguments but 1 argument was supplied
19+
--> $DIR/suggest-arg-comma-delete-ice.rs:15:5
20+
|
21+
LL | main(rahh);
22+
| ^^^^ ---- unexpected argument
23+
|
24+
note: function defined here
25+
--> $DIR/suggest-arg-comma-delete-ice.rs:11:4
26+
|
27+
LL | fn main() {
28+
| ^^^^
29+
help: remove the extra argument
30+
|
31+
LL - main(rahh);
32+
LL + main();
33+
|
34+
35+
error: aborting due to 3 previous errors
36+
37+
Some errors have detailed explanations: E0061, E0425.
38+
For more information about an error, try `rustc --explain E0061`.

0 commit comments

Comments
 (0)