(self, heap, map, address)
| 1762 | Code.CODE_ALIGNMENT_MASK) & ~Code.CODE_ALIGNMENT_MASK |
| 1763 | |
| 1764 | def __init__(self, heap, map, address): |
| 1765 | HeapObject.__init__(self, heap, map, address) |
| 1766 | self.entry = self.address + Code.HeaderSize(heap) |
| 1767 | self.instruction_size = \ |
| 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) |
nothing calls this directly
no test coverage detected