(
self, lineno: int, tokens: list[tuple[_TokenType, str]]
)
| 425 | |
| 426 | @abc.abstractmethod |
| 427 | def reprint_line( |
| 428 | self, lineno: int, tokens: list[tuple[_TokenType, str]] |
| 429 | ) -> None: |
| 430 | pass |
| 431 | |
| 432 | @abc.abstractmethod |
| 433 | def _get_current_line(self) -> str: |