(self)
| 2070 | class HighLevelILSyscallSsa(HighLevelILInstruction, Syscall, SSA): |
| 2071 | @property |
| 2072 | def params(self) -> List[HighLevelILInstruction]: |
| 2073 | return self.get_expr_list(0, 1) |
| 2074 | |
| 2075 | @property |
| 2076 | def dest_memory(self) -> int: |
nothing calls this directly
no test coverage detected