(self, heap, map, address)
| 1494 | return self.ObjectField(self.MemberOffset(i)) |
| 1495 | |
| 1496 | def __init__(self, heap, map, address): |
| 1497 | HeapObject.__init__(self, heap, map, address) |
| 1498 | self.length = self.SmiField(self.LengthOffset()) |
| 1499 | |
| 1500 | def Print(self, p): |
| 1501 | p.Print("FixedArray(%s) {" % self.heap.reader.FormatIntPtr(self.address)) |
nothing calls this directly
no test coverage detected