(self, p)
| 1741 | self.normal_type_cache = self.ObjectField(self.NormalTypeCacheOffset()) |
| 1742 | |
| 1743 | def Print(self, p): |
| 1744 | p.Print("CodeCache(%s) {" % self.heap.reader.FormatIntPtr(self.address)) |
| 1745 | p.Indent() |
| 1746 | p.Print("default cache: %s" % self.default_cache) |
| 1747 | p.Print("normal type cache: %s" % self.normal_type_cache) |
| 1748 | p.Dedent() |
| 1749 | p.Print("}") |
| 1750 | |
| 1751 | |
| 1752 | class Code(HeapObject): |
nothing calls this directly
no test coverage detected