(self)
| 1949 | class MediumLevelILVarSplitSsa(MediumLevelILInstruction, SSA): |
| 1950 | @property |
| 1951 | def high(self) -> SSAVariable: |
| 1952 | return self._get_var_ssa(0, 1) |
| 1953 | |
| 1954 | @property |
| 1955 | def low(self) -> SSAVariable: |
nothing calls this directly
no test coverage detected