(self, cursor_offset: int, line: str)
| 568 | return matches if matches else None |
| 569 | |
| 570 | def locate(self, cursor_offset: int, line: str) -> LinePart | None: |
| 571 | return lineparts.current_single_word(cursor_offset, line) |
| 572 | |
| 573 | |
| 574 | class ParameterNameCompletion(BaseCompletionType): |