(self, heap, map, address)
| 1382 | return self.heap.TaggedPointerSize() * 3 |
| 1383 | |
| 1384 | def __init__(self, heap, map, address): |
| 1385 | String.__init__(self, heap, map, address) |
| 1386 | self.chars = heap.reader.ReadBytes(self.address + self.CharsOffset(), |
| 1387 | self.length).decode('utf8') |
| 1388 | |
| 1389 | def GetChars(self): |
| 1390 | return self.chars |
nothing calls this directly
no test coverage detected