Compile the fused instruction stream on first access; reuse afterwards. */
(&mut self, chunk: &SSAChunk)
| 56 | |
| 57 | /* Compile the fused instruction stream on first access; reuse afterwards. */ |
| 58 | pub fn ensure_fused(&mut self, chunk: &SSAChunk) -> &[Instruction] { |
| 59 | if self.fused.is_none() { |
| 60 | self.fused = Some(fuse_method_calls(chunk)); |
| 61 | } |
| 62 | self.fused.as_ref().unwrap() |
| 63 | } |
| 64 | |
| 65 | /* Direct access (caller must have called ensure_fused). */ |
| 66 | pub fn fused_ref(&self) -> &[Instruction] { |
no test coverage detected