(mut self, operand_index: usize)
| 141 | } |
| 142 | |
| 143 | pub fn typevar_operand(mut self, operand_index: usize) -> Self { |
| 144 | assert!(self.0.typevar_operand.is_none()); |
| 145 | assert!(operand_index < self.0.num_value_operands); |
| 146 | self.0.typevar_operand = Some(operand_index); |
| 147 | self |
| 148 | } |
| 149 | |
| 150 | pub fn build(mut self) -> Rc<InstructionFormat> { |
| 151 | if self.0.typevar_operand.is_none() && self.0.num_value_operands > 0 { |
no outgoing calls
no test coverage detected