(self, start)
| 185 | return self.start_line, self.start_col, self.priority |
| 186 | |
| 187 | def __init__(self, start): |
| 188 | self.start_line = start[0] - 1 # Shift from 1-index to 0-index |
| 189 | self.start_col = start[1] |
| 190 | |
| 191 | @classmethod |
| 192 | def find(cls, tokens_by_line): |
nothing calls this directly
no outgoing calls
no test coverage detected