( self, subindex : int )
| 28 | |
| 29 | |
| 30 | def ToRootLocation( self, subindex : int ): |
| 31 | location = self._data.get( 'root_location' ) |
| 32 | if location: |
| 33 | file = location[ 'filepath' ] |
| 34 | line = location[ 'line_num' ] |
| 35 | column = location[ 'column_num' ] |
| 36 | return file, line, column |
| 37 | else: |
| 38 | return self.ToLocation( subindex ) |
| 39 | |
| 40 | |
| 41 | def ToLocation( self, subindex : int ): |
no test coverage detected