(self)
| 1360 | |
| 1361 | class String(HeapObject): |
| 1362 | def LengthOffset(self): |
| 1363 | # First word after the map is the hash, the second is the length. |
| 1364 | return self.heap.TaggedPointerSize() * 2 |
| 1365 | |
| 1366 | def __init__(self, heap, map, address): |
| 1367 | HeapObject.__init__(self, heap, map, address) |
no test coverage detected