(self, pos: int)
| 329 | return target |
| 330 | |
| 331 | def get_argument(self, pos: int): |
| 332 | arg = self.code[pos + 1] + self.code[pos + 2] * 256 |
| 333 | return arg |
| 334 | |
| 335 | def next_offset(self, op, offset: int) -> int: |
| 336 | return xdis.next_offset(op, self.opc, offset) |
no outgoing calls
no test coverage detected