Push a new fblock = compiler_push_fblock
(
&mut self,
fb_type: FBlockType,
fb_block: BlockIdx,
fb_exit: BlockIdx,
)
| 1459 | /// Push a new fblock |
| 1460 | // = compiler_push_fblock |
| 1461 | fn push_fblock( |
| 1462 | &mut self, |
| 1463 | fb_type: FBlockType, |
| 1464 | fb_block: BlockIdx, |
| 1465 | fb_exit: BlockIdx, |
| 1466 | ) -> CompileResult<()> { |
| 1467 | self.push_fblock_full(fb_type, fb_block, fb_exit, FBlockDatum::None) |
| 1468 | } |
| 1469 | |
| 1470 | /// Push an fblock with all parameters including fb_datum |
| 1471 | fn push_fblock_full( |
no test coverage detected