(self, selection_type: SelectionType)
| 70 | self.open_in_editor_calls.append(validate_and_handle) |
| 71 | |
| 72 | def start_selection(self, selection_type: SelectionType) -> None: |
| 73 | self.start_selection_calls.append(selection_type) |
| 74 | |
| 75 | def transform_region(self, start: int, end: int, handler: Callable[[str], str]) -> None: |
| 76 | self.transform_calls.append((start, end, handler)) |