Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Michael Sloan
e7bf12c79d
outline: Fix nesting for declarations that declare multiple names 2025-08-11 22:55:57 -06:00

View file

@ -3661,7 +3661,7 @@ impl BufferSnapshot {
let mut annotation_row_ranges = annotation_row_ranges.into_iter().peekable();
for item in items {
while let Some(last_end) = item_ends_stack.last().copied() {
if last_end < item.range.end {
if last_end <= item.range.end {
item_ends_stack.pop();
} else {
break;