Skip to content

Commit eb8aa97

Browse files
committed
Add testcase for next_point, fix more trivial issues in find_width_of_character_at_span
1 parent 0af255a commit eb8aa97

File tree

3 files changed

+59
-8
lines changed

3 files changed

+59
-8
lines changed

compiler/rustc_span/src/source_map.rs

+13-6
Original file line numberDiff line numberDiff line change
@@ -853,16 +853,22 @@ impl SourceMap {
853853
}
854854

855855
/// Returns a new span representing the next character after the end-point of this span.
856+
/// Special cases:
857+
/// - if span is a dummy one, returns the same span
858+
/// - if next_point reached the end of source, return span with lo = hi
859+
/// - respect multi-byte characters
856860
pub fn next_point(&self, sp: Span) -> Span {
857861
if sp.is_dummy() {
858862
return sp;
859863
}
860864
let start_of_next_point = sp.hi().0;
861865

862866
let width = self.find_width_of_character_at_span(sp, true);
863-
debug_assert!(width > 0);
864-
// If the width is 1, then the next span should point to the same `lo` and `hi`. However,
865-
// in the case of a multibyte character, where the width != 1, the next span should
867+
if width == 0 {
868+
return Span::new(sp.hi(), sp.hi(), sp.ctxt(), None);
869+
}
870+
// If the width is 1, then the next span should only contain the next char besides current ending.
871+
// However, in the case of a multibyte character, where the width != 1, the next span should
866872
// span multiple bytes to include the whole character.
867873
let end_of_next_point =
868874
start_of_next_point.checked_add(width).unwrap_or(start_of_next_point);
@@ -875,7 +881,8 @@ impl SourceMap {
875881
/// depending on the `forwards` parameter.
876882
fn find_width_of_character_at_span(&self, sp: Span, forwards: bool) -> u32 {
877883
let sp = sp.data();
878-
if sp.lo == sp.hi {
884+
885+
if sp.lo == sp.hi && !forwards {
879886
debug!("find_width_of_character_at_span: early return empty span");
880887
return 1;
881888
}
@@ -909,9 +916,9 @@ impl SourceMap {
909916
let source_len = (local_begin.sf.end_pos - local_begin.sf.start_pos).to_usize();
910917
debug!("find_width_of_character_at_span: source_len=`{:?}`", source_len);
911918
// Ensure indexes are also not malformed.
912-
if start_index > end_index || end_index > source_len {
919+
if start_index > end_index || end_index > source_len - 1 {
913920
debug!("find_width_of_character_at_span: source indexes are malformed");
914-
return 1;
921+
return 0;
915922
}
916923

917924
let src = local_begin.sf.external_src.borrow();

compiler/rustc_span/src/source_map/tests.rs

+45
Original file line numberDiff line numberDiff line change
@@ -479,3 +479,48 @@ fn path_prefix_remapping_expand_to_absolute() {
479479
RealFileName::Remapped { local_path: None, virtual_name: path("XYZ/src/main.rs") }
480480
);
481481
}
482+
483+
#[test]
484+
fn test_next_point() {
485+
let sm = SourceMap::new(FilePathMapping::empty());
486+
sm.new_source_file(PathBuf::from("example.rs").into(), "a…b".to_string());
487+
488+
// Dummy spans don't advance.
489+
let span = DUMMY_SP;
490+
let span = sm.next_point(span);
491+
assert_eq!(span.lo().0, 0);
492+
assert_eq!(span.hi().0, 0);
493+
494+
// Span advance respect multi-byte character
495+
let span = Span::with_root_ctxt(BytePos(0), BytePos(1));
496+
assert_eq!(sm.span_to_snippet(span), Ok("a".to_string()));
497+
let span = sm.next_point(span);
498+
assert_eq!(sm.span_to_snippet(span), Ok("…".to_string()));
499+
assert_eq!(span.lo().0, 1);
500+
assert_eq!(span.hi().0, 4);
501+
502+
// An empty span pointing just before a multi-byte character should
503+
// advance to contain the multi-byte character.
504+
let span = Span::with_root_ctxt(BytePos(1), BytePos(1));
505+
let span = sm.next_point(span);
506+
assert_eq!(span.lo().0, 1);
507+
assert_eq!(span.hi().0, 4);
508+
509+
let span = Span::with_root_ctxt(BytePos(1), BytePos(4));
510+
let span = sm.next_point(span);
511+
assert_eq!(span.lo().0, 4);
512+
assert_eq!(span.hi().0, 5);
513+
514+
// A non-empty span at the last byte should advance to create an empty
515+
// span pointing at the end of the file.
516+
let span = Span::with_root_ctxt(BytePos(4), BytePos(5));
517+
let span = sm.next_point(span);
518+
assert_eq!(span.lo().0, 5);
519+
assert_eq!(span.hi().0, 5);
520+
521+
// Empty span pointing just past the last byte.
522+
let span = Span::with_root_ctxt(BytePos(5), BytePos(5));
523+
let span = sm.next_point(span);
524+
assert_eq!(span.lo().0, 5);
525+
assert_eq!(span.hi().0, 5);
526+
}

src/tools/clippy/clippy_utils/src/sugg.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -769,8 +769,7 @@ impl<T: LintContext> DiagnosticExt<T> for rustc_errors::Diagnostic {
769769

770770
fn suggest_remove_item(&mut self, cx: &T, item: Span, msg: &str, applicability: Applicability) {
771771
let mut remove_span = item;
772-
let hi = cx.sess().source_map().next_point(remove_span).hi();
773-
let fmpos = cx.sess().source_map().lookup_byte_offset(hi);
772+
let fmpos = cx.sess().source_map().lookup_byte_offset(remove_span.hi());
774773

775774
if let Some(ref src) = fmpos.sf.src {
776775
let non_whitespace_offset = src[fmpos.pos.to_usize()..].find(|c| c != ' ' && c != '\t' && c != '\n');

0 commit comments

Comments
 (0)