(self, p)
| 1768 | heap.reader.ReadU32(self.address + self.InstructionSizeOffset()) |
| 1769 | |
| 1770 | def Print(self, p): |
| 1771 | lines = self.heap.reader.GetDisasmLines(self.entry, self.instruction_size) |
| 1772 | p.Print("Code(%s) {" % self.heap.reader.FormatIntPtr(self.address)) |
| 1773 | p.Indent() |
| 1774 | p.Print("instruction_size: %d" % self.instruction_size) |
| 1775 | p.PrintLines(self._FormatLine(line) for line in lines) |
| 1776 | p.Dedent() |
| 1777 | p.Print("}") |
| 1778 | |
| 1779 | def _FormatLine(self, line): |
| 1780 | return FormatDisasmLine(self.entry, self.heap, line) |
nothing calls this directly
no test coverage detected