(&self, span: impl ToSpan)
| 128 | } |
| 129 | |
| 130 | pub fn has_replacement(&self, span: impl ToSpan) -> bool { |
| 131 | self.overlays.borrow().has_overlay(span.to_span()) |
| 132 | } |
| 133 | |
| 134 | pub fn clear_pending_edits(&self, span: Span) -> bool { |
| 135 | let mut edits = self.edits.borrow_mut(); |
nothing calls this directly
no test coverage detected