(&mut self, constant: ConstantData)
| 9530 | } |
| 9531 | |
| 9532 | fn emit_return_const(&mut self, constant: ConstantData) { |
| 9533 | self.emit_load_const(constant); |
| 9534 | emit!(self, Instruction::ReturnValue) |
| 9535 | } |
| 9536 | |
| 9537 | fn emit_end_async_for(&mut self, send_target: BlockIdx) { |
| 9538 | self._emit(Instruction::EndAsyncFor, OpArg::NULL, send_target); |
no test coverage detected