(self, cursor_offset: int, line: str)
| 368 | return matches |
| 369 | |
| 370 | def locate(self, cursor_offset: int, line: str) -> LinePart | None: |
| 371 | return lineparts.current_string(cursor_offset, line) |
| 372 | |
| 373 | def format(self, filename: str) -> str: |
| 374 | if os.sep in filename[:-1]: |
nothing calls this directly
no test coverage detected