Code to tokenize disassembly. Subclasses must implement this.
(self, co, classname=None, code_objects={}, show_asm=None)
| 296 | return offset < self.get_target(offset) |
| 297 | |
| 298 | def ingest(self, co, classname=None, code_objects={}, show_asm=None): |
| 299 | """ |
| 300 | Code to tokenize disassembly. Subclasses must implement this. |
| 301 | """ |
| 302 | raise NotImplementedError("This method should have been implemented") |
| 303 | |
| 304 | def prev_offset(self, offset: int) -> int: |
| 305 | return self.insts[self.offset2inst_index[offset] - 1].offset |
no outgoing calls
no test coverage detected