Skip to content

Commit 06bb4e7

Browse files
authored
Rollup merge of rust-lang#81860 - osa1:issue81800, r=estebank
Fix SourceMap::start_point `start_point` needs to return the *first* character's span, but it would previously call `find_width_of_character_at_span` which returns the span of the *last* character. The implementation is now fixed. Other changes: - Docs for start_point, end_point, find_width_of_character_at_span updated - Minor simplification in find_width_of_character_at_span code Fixes rust-lang#81800
2 parents e19d6fc + 7e94641 commit 06bb4e7

File tree

3 files changed

+51
-12
lines changed

3 files changed

+51
-12
lines changed

compiler/rustc_span/src/source_map.rs

+30-12
Original file line numberDiff line numberDiff line change
@@ -778,16 +778,35 @@ impl SourceMap {
778778
self.span_until_char(sp, '{')
779779
}
780780

781-
/// Returns a new span representing just the start point of this span.
781+
/// Returns a new span representing just the first character of the given span.
782782
pub fn start_point(&self, sp: Span) -> Span {
783-
let pos = sp.lo().0;
784-
let width = self.find_width_of_character_at_span(sp, false);
785-
let corrected_start_position = pos.checked_add(width).unwrap_or(pos);
786-
let end_point = BytePos(cmp::max(corrected_start_position, sp.lo().0));
787-
sp.with_hi(end_point)
783+
let width = {
784+
let sp = sp.data();
785+
let local_begin = self.lookup_byte_offset(sp.lo);
786+
let start_index = local_begin.pos.to_usize();
787+
let src = local_begin.sf.external_src.borrow();
788+
789+
let snippet = if let Some(ref src) = local_begin.sf.src {
790+
Some(&src[start_index..])
791+
} else if let Some(src) = src.get_source() {
792+
Some(&src[start_index..])
793+
} else {
794+
None
795+
};
796+
797+
match snippet {
798+
None => 1,
799+
Some(snippet) => match snippet.chars().next() {
800+
None => 1,
801+
Some(c) => c.len_utf8(),
802+
},
803+
}
804+
};
805+
806+
sp.with_hi(BytePos(sp.lo().0 + width as u32))
788807
}
789808

790-
/// Returns a new span representing just the end point of this span.
809+
/// Returns a new span representing just the last character of this span.
791810
pub fn end_point(&self, sp: Span) -> Span {
792811
let pos = sp.hi().0;
793812

@@ -816,7 +835,8 @@ impl SourceMap {
816835
Span::new(BytePos(start_of_next_point), end_of_next_point, sp.ctxt())
817836
}
818837

819-
/// Finds the width of a character, either before or after the provided span.
838+
/// Finds the width of the character, either before or after the end of provided span,
839+
/// depending on the `forwards` parameter.
820840
fn find_width_of_character_at_span(&self, sp: Span, forwards: bool) -> u32 {
821841
let sp = sp.data();
822842
if sp.lo == sp.hi {
@@ -863,11 +883,9 @@ impl SourceMap {
863883
// We need to extend the snippet to the end of the src rather than to end_index so when
864884
// searching forwards for boundaries we've got somewhere to search.
865885
let snippet = if let Some(ref src) = local_begin.sf.src {
866-
let len = src.len();
867-
&src[start_index..len]
886+
&src[start_index..]
868887
} else if let Some(src) = src.get_source() {
869-
let len = src.len();
870-
&src[start_index..len]
888+
&src[start_index..]
871889
} else {
872890
return 1;
873891
};

src/test/ui/span/issue-81800.rs

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fn x˂- //~ ERROR: unknown start of token
2+
//~^ ERROR: expected one of `#`, `>`, `const`, identifier, or lifetime, found `-`

src/test/ui/span/issue-81800.stderr

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
error: unknown start of token: \u{2c2}
2+
--> $DIR/issue-81800.rs:1:5
3+
|
4+
LL | fn x˂-
5+
| ^
6+
|
7+
help: Unicode character '˂' (Modifier Letter Left Arrowhead) looks like '<' (Less-Than Sign), but it is not
8+
|
9+
LL | fn x<-
10+
| ^
11+
12+
error: expected one of `#`, `>`, `const`, identifier, or lifetime, found `-`
13+
--> $DIR/issue-81800.rs:1:6
14+
|
15+
LL | fn x˂-
16+
| ^ expected one of `#`, `>`, `const`, identifier, or lifetime
17+
18+
error: aborting due to 2 previous errors
19+

0 commit comments

Comments
 (0)