(self)
| 1895 | class MediumLevelILSyscall(MediumLevelILInstruction, Syscall): |
| 1896 | @property |
| 1897 | def output(self) -> List[variable.Variable]: |
| 1898 | return self._get_var_list(0, 1) |
| 1899 | |
| 1900 | @property |
| 1901 | def params(self) -> List[MediumLevelILInstruction]: |
nothing calls this directly
no test coverage detected