(self, chars: int, line: int)
| 39 | |
| 40 | class Position: |
| 41 | def __init__(self, chars: int, line: int) -> None: |
| 42 | self.chars = chars |
| 43 | self.line = line |
| 44 | |
| 45 | @classmethod |
| 46 | def start(cls) -> "Position": |
nothing calls this directly
no outgoing calls
no test coverage detected