(self, heap, map, address)
| 1463 | return self.ToNumberOffset() + self.heap.TaggedPointerSize() |
| 1464 | |
| 1465 | def __init__(self, heap, map, address): |
| 1466 | HeapObject.__init__(self, heap, map, address) |
| 1467 | self.to_string = self.ObjectField(self.ToStringOffset()) |
| 1468 | self.kind = self.SmiField(self.KindOffset()) |
| 1469 | |
| 1470 | def Print(self, p): |
| 1471 | p.Print(str(self)) |
nothing calls this directly
no test coverage detected