(self)
| 2057 | class HighLevelILSyscall(HighLevelILInstruction, Syscall): |
| 2058 | @property |
| 2059 | def params(self) -> List[HighLevelILInstruction]: |
| 2060 | return self.get_expr_list(0, 1) |
| 2061 | |
| 2062 | @property |
| 2063 | def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected