We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64d2630 commit 0edf07fCopy full SHA for 0edf07f
src/types.rs
@@ -974,8 +974,8 @@ impl SourceMap {
974
975
if right_range.end >= left_range.end {
976
// There are surely no more `right_ranges` for this `left_range`.
977
- // Break the loop without advancing the `right_range`.
978
- break;
+ // Continue to the next `left_range` without advancing the `right_range`.
+ continue;
979
} else {
980
// Advance the `right_range`.
981
match right_ranges_iter.next() {
0 commit comments