(self)
| 182 | priority = 10 |
| 183 | |
| 184 | def sortby(self): |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected