(&mut self, constant: ConstantData)
| 9497 | } |
| 9498 | |
| 9499 | fn emit_load_const(&mut self, constant: ConstantData) { |
| 9500 | let idx = self.arg_constant(constant); |
| 9501 | self.emit_arg(idx, |consti| Instruction::LoadConst { consti }) |
| 9502 | } |
| 9503 | |
| 9504 | /// Fold constant slice: if all parts are compile-time constants, emit LOAD_CONST(slice). |
| 9505 | fn try_fold_constant_slice( |
no test coverage detected