When used as a mixin in place of V8Heap.
(self, tagged_address)
| 2223 | return None |
| 2224 | |
| 2225 | def FindObjectOrSmi(self, tagged_address): |
| 2226 | """When used as a mixin in place of V8Heap.""" |
| 2227 | found_obj = self.SenseObject(tagged_address) |
| 2228 | if found_obj: |
| 2229 | return found_obj |
| 2230 | if self.IsSmi(tagged_address): |
| 2231 | return self.FormatSmi(tagged_address) |
| 2232 | else: |
| 2233 | return UnknownObject(self, tagged_address) |
| 2234 | |
| 2235 | def FindObject(self, tagged_address): |
| 2236 | """When used as a mixin in place of V8Heap.""" |
nothing calls this directly
no test coverage detected