(&self)
| 826 | } |
| 827 | |
| 828 | pub fn current_location(&self) -> SourceLocation { |
| 829 | self.code.locations[self.lasti() as usize - 1].0 |
| 830 | } |
| 831 | |
| 832 | /// Get the previous frame pointer for signal-safe traceback walking. |
| 833 | pub fn previous_frame(&self) -> *const Frame { |
no test coverage detected