( self, subindex : int )
| 39 | |
| 40 | |
| 41 | def ToLocation( self, subindex : int ): |
| 42 | location = self._data[ 'locations' ][ subindex ] |
| 43 | line = location[ 'line_num' ] |
| 44 | column = location[ 'column_num' ] |
| 45 | file = location[ 'filepath' ] |
| 46 | return file, line, column |
| 47 | |
| 48 | |
| 49 | MAX_HANDLES_PER_INDEX = 1000000 |
no outgoing calls
no test coverage detected