(self)
| 2234 | class MediumLevelILIntrinsic(MediumLevelILInstruction, Intrinsic): |
| 2235 | @property |
| 2236 | def output(self) -> List[variable.Variable]: |
| 2237 | return self._get_var_list(0, 1) |
| 2238 | |
| 2239 | @property |
| 2240 | def intrinsic(self) -> 'lowlevelil.ILIntrinsic': |
nothing calls this directly
no test coverage detected