(self)
| 2396 | class MediumLevelILSetVarSplitSsa(MediumLevelILInstruction, SetVar, SSA): |
| 2397 | @property |
| 2398 | def high(self) -> SSAVariable: |
| 2399 | return self._get_var_ssa(0, 1) |
| 2400 | |
| 2401 | @property |
| 2402 | def low(self) -> SSAVariable: |
nothing calls this directly
no test coverage detected