(self, start, q_locn)
| 422 | priority = 5 |
| 423 | |
| 424 | def __init__(self, start, q_locn): |
| 425 | super().__init__(start) |
| 426 | self.q_line = q_locn[0] - 1 # Shift from 1-indexed to 0-indexed |
| 427 | self.q_col = q_locn[1] |
| 428 | |
| 429 | @classmethod |
| 430 | def find(cls, tokens_by_line): |
nothing calls this directly
no outgoing calls
no test coverage detected