Resolve the span ending at `target` (or, failing that, containing it), preferring an empty marker at exactly `target`, if this change is loaded.
(&self, change_id: u64, target: u64)
| 50 | /// Resolve the span ending at `target` (or, failing that, containing it), |
| 51 | /// preferring an empty marker at exactly `target`, if this change is loaded. |
| 52 | pub(crate) fn find_block_end(&self, change_id: u64, target: u64) -> Option<(u64, u64)> { |
| 53 | block_end(self.spans.get(&change_id)?, target) |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | /// `find_block` query against a loaded span set. |
no test coverage detected