(self, heap, map, address)
| 1353 | p.Print(" - Prototype: %s" % self.ObjectField(self.PrototypeOffset())) |
| 1354 | |
| 1355 | def __init__(self, heap, map, address): |
| 1356 | HeapObject.__init__(self, heap, map, address) |
| 1357 | self.instance_type = \ |
| 1358 | heap.reader.ReadU8(self.address + self.InstanceTypeOffset()) |
| 1359 | |
| 1360 | |
| 1361 | class String(HeapObject): |