(self, tagged_address)
| 1812 | self.objects = {} |
| 1813 | |
| 1814 | def FindObjectOrSmi(self, tagged_address): |
| 1815 | if self.IsSmi(tagged_address): return self.SmiUntag(tagged_address) |
| 1816 | return self.FindObject(tagged_address) |
| 1817 | |
| 1818 | def FindObject(self, tagged_address): |
| 1819 | if tagged_address in self.objects: |
no test coverage detected