(self)
| 1913 | class MediumLevelILVarSsaField(MediumLevelILInstruction, SSA): |
| 1914 | @property |
| 1915 | def src(self) -> SSAVariable: |
| 1916 | return self._get_var_ssa(0, 1) |
| 1917 | |
| 1918 | @property |
| 1919 | def offset(self) -> int: |
nothing calls this directly
no test coverage detected