(self)
| 1217 | p.Print(str(self)) |
| 1218 | |
| 1219 | def __str__(self): |
| 1220 | instance_type = "???" |
| 1221 | if self.map is not None: |
| 1222 | instance_type = INSTANCE_TYPES[self.map.instance_type] |
| 1223 | return "%s(%s, %s)" % (self.__class__.__name__, |
| 1224 | self.heap.reader.FormatIntPtr(self.address), |
| 1225 | instance_type) |
| 1226 | |
| 1227 | def ObjectField(self, offset): |
| 1228 | if not self.heap.reader.IsValidAddress(self.address + offset): |
nothing calls this directly
no test coverage detected