Gets the list of IL instructions where this SSAVariable is used inside of this function.
(self)
| 103 | |
| 104 | @property |
| 105 | def use_sites(self) -> List[Union['MediumLevelILInstruction', 'highlevelil.HighLevelILInstruction']]: |
| 106 | """ |
| 107 | Gets the list of IL instructions where this SSAVariable is used inside of this function. |
| 108 | """ |
| 109 | return self.il_function.get_ssa_var_uses(self) |
| 110 | |
| 111 | |
| 112 | class MediumLevelILLabel: |
nothing calls this directly
no test coverage detected