mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 17:43:20 +03:00
Fix empty range edge case in FoldMap
This commit is contained in:
parent
4967a8d5ef
commit
84d257470a
@ -647,11 +647,13 @@ impl Snapshot {
|
|||||||
|
|
||||||
Chunks {
|
Chunks {
|
||||||
transform_cursor,
|
transform_cursor,
|
||||||
buffer_offset: buffer_start,
|
|
||||||
buffer_chunks: self
|
buffer_chunks: self
|
||||||
.buffer_snapshot
|
.buffer_snapshot
|
||||||
.chunks(buffer_start..buffer_end, enable_highlights),
|
.chunks(buffer_start..buffer_end, enable_highlights),
|
||||||
buffer_chunk: None,
|
buffer_chunk: None,
|
||||||
|
buffer_offset: buffer_start,
|
||||||
|
output_offset: range.start.0,
|
||||||
|
max_output_offset: range.end.0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -938,12 +940,18 @@ pub struct Chunks<'a> {
|
|||||||
buffer_chunks: language::Chunks<'a>,
|
buffer_chunks: language::Chunks<'a>,
|
||||||
buffer_chunk: Option<(usize, Chunk<'a>)>,
|
buffer_chunk: Option<(usize, Chunk<'a>)>,
|
||||||
buffer_offset: usize,
|
buffer_offset: usize,
|
||||||
|
output_offset: usize,
|
||||||
|
max_output_offset: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> Iterator for Chunks<'a> {
|
impl<'a> Iterator for Chunks<'a> {
|
||||||
type Item = Chunk<'a>;
|
type Item = Chunk<'a>;
|
||||||
|
|
||||||
fn next(&mut self) -> Option<Self::Item> {
|
fn next(&mut self) -> Option<Self::Item> {
|
||||||
|
if self.output_offset >= self.max_output_offset {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
let transform = if let Some(item) = self.transform_cursor.item() {
|
let transform = if let Some(item) = self.transform_cursor.item() {
|
||||||
item
|
item
|
||||||
} else {
|
} else {
|
||||||
@ -963,6 +971,7 @@ impl<'a> Iterator for Chunks<'a> {
|
|||||||
self.transform_cursor.next(&());
|
self.transform_cursor.next(&());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.output_offset += output_text.len();
|
||||||
return Some(Chunk {
|
return Some(Chunk {
|
||||||
text: output_text,
|
text: output_text,
|
||||||
highlight_id: HighlightId::default(),
|
highlight_id: HighlightId::default(),
|
||||||
@ -991,6 +1000,7 @@ impl<'a> Iterator for Chunks<'a> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.buffer_offset += chunk.text.len();
|
self.buffer_offset += chunk.text.len();
|
||||||
|
self.output_offset += chunk.text.len();
|
||||||
return Some(chunk);
|
return Some(chunk);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1362,14 +1372,22 @@ mod tests {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _ in 0..5 {
|
for _ in 0..5 {
|
||||||
let start = snapshot
|
let mut start = snapshot
|
||||||
|
.clip_offset(FoldOffset(rng.gen_range(0..=snapshot.len().0)), Bias::Left);
|
||||||
|
let mut end = snapshot
|
||||||
.clip_offset(FoldOffset(rng.gen_range(0..=snapshot.len().0)), Bias::Right);
|
.clip_offset(FoldOffset(rng.gen_range(0..=snapshot.len().0)), Bias::Right);
|
||||||
|
if start > end {
|
||||||
|
mem::swap(&mut start, &mut end);
|
||||||
|
}
|
||||||
|
|
||||||
|
let text = &expected_text[start.0..end.0];
|
||||||
|
log::info!("slicing {:?}..{:?} (text: {:?})", start, end, text);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
snapshot
|
snapshot
|
||||||
.chunks(start..snapshot.len(), false)
|
.chunks(start..end, false)
|
||||||
.map(|c| c.text)
|
.map(|c| c.text)
|
||||||
.collect::<String>(),
|
.collect::<String>(),
|
||||||
&expected_text[start.0..],
|
text,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user