code references to this data variable (read-only)
(self)
| 11081 | |
| 11082 | @property |
| 11083 | def code_refs(self) -> Generator['ReferenceSource', None, None]: |
| 11084 | """code references to this data variable (read-only)""" |
| 11085 | return self.view.get_code_refs(self.address, max(1, len(self))) |
| 11086 | |
| 11087 | def __len__(self): |
| 11088 | return len(self.type) |
nothing calls this directly
no test coverage detected