(self, cursor_offset: int, line: str)
| 611 | class ExpressionAttributeCompletion(AttrCompletion): |
| 612 | # could replace attr completion as a more general case with some work |
| 613 | def locate(self, cursor_offset: int, line: str) -> LinePart | None: |
| 614 | return lineparts.current_expression_attribute(cursor_offset, line) |
| 615 | |
| 616 | def matches( |
| 617 | self, |