(self, heap, map, address)
| 1428 | return self.heap.TaggedPointerSize() * 4 |
| 1429 | |
| 1430 | def __init__(self, heap, map, address): |
| 1431 | String.__init__(self, heap, map, address) |
| 1432 | self.left = self.ObjectField(self.LeftOffset()) |
| 1433 | self.right = self.ObjectField(self.RightOffset()) |
| 1434 | |
| 1435 | def GetChars(self): |
| 1436 | try: |
nothing calls this directly
no test coverage detected