(&mut self, inst: Inst)
| 697 | } |
| 698 | |
| 699 | fn push_compiled(&mut self, inst: Inst) { |
| 700 | self.insts.push(MaybeInst::Compiled(inst)); |
| 701 | } |
| 702 | |
| 703 | fn push_hole(&mut self, inst: InstHole) -> Hole { |
| 704 | let hole = self.insts.len(); |
no test coverage detected