(&mut self)
| 9872 | } |
| 9873 | |
| 9874 | fn new_block(&mut self) -> BlockIdx { |
| 9875 | let code = self.current_code_info(); |
| 9876 | let idx = BlockIdx::new(code.blocks.len().to_u32()); |
| 9877 | code.blocks.push(ir::Block::default()); |
| 9878 | idx |
| 9879 | } |
| 9880 | |
| 9881 | fn switch_to_block(&mut self, block: BlockIdx) { |
| 9882 | let code = self.current_code_info(); |
no test coverage detected