(self, heap, map, address)
| 1364 | return self.heap.TaggedPointerSize() * 2 |
| 1365 | |
| 1366 | def __init__(self, heap, map, address): |
| 1367 | HeapObject.__init__(self, heap, map, address) |
| 1368 | self.length = self.Uint32Field(self.LengthOffset()) |
| 1369 | |
| 1370 | def GetChars(self): |
| 1371 | return "?string?" |
nothing calls this directly
no test coverage detected