``caller_sites`` returns a list of ReferenceSource objects corresponding to the addresses in functions which reference this function :return: List of ReferenceSource objects of the call sites to this function :rtype: list(ReferenceSource)
(self)
| 3119 | |
| 3120 | @property |
| 3121 | def caller_sites(self) -> Generator['binaryview.ReferenceSource', None, None]: |
| 3122 | """ |
| 3123 | ``caller_sites`` returns a list of ReferenceSource objects corresponding to the addresses |
| 3124 | in functions which reference this function |
| 3125 | |
| 3126 | :return: List of ReferenceSource objects of the call sites to this function |
| 3127 | :rtype: list(ReferenceSource) |
| 3128 | """ |
| 3129 | return self.view.get_code_refs(self.start) |
| 3130 | |
| 3131 | @property |
| 3132 | def workflow(self): |
nothing calls this directly
no test coverage detected