(self)
| 1931 | class MediumLevelILVarAliasedField(MediumLevelILInstruction, SSA): |
| 1932 | @property |
| 1933 | def src(self) -> SSAVariable: |
| 1934 | return self._get_var_ssa(0, 1) |
| 1935 | |
| 1936 | @property |
| 1937 | def offset(self) -> int: |
nothing calls this directly
no test coverage detected