(&self)
| 283 | } |
| 284 | |
| 285 | fn current_frame(&self) -> &Frame<'a> { |
| 286 | let num_frames = self.frame_stack.len(); |
| 287 | match num_frames { |
| 288 | 0 => panic!("unable to retrieve the current frame because no frames were pushed"), |
| 289 | _ => &self.frame_stack[num_frames - 1], |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | fn stack_address( |
| 294 | &self, |
no test coverage detected