(&mut self, idx: OperandIdx, operand: Operand)
| 393 | } |
| 394 | } |
| 395 | fn index_set(&mut self, idx: OperandIdx, operand: Operand) { |
| 396 | match idx { |
| 397 | OperandIdx::ResultType => self.result_type = Some(operand.unwrap_id_ref()), |
| 398 | OperandIdx::Input(i) => self.operands[i] = operand, |
| 399 | } |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] |
no outgoing calls
no test coverage detected