Get the frame that this cursor currently points at.
(&self)
| 155 | |
| 156 | /// Get the frame that this cursor currently points at. |
| 157 | pub fn frame(&self) -> Frame { |
| 158 | assert!(!self.done()); |
| 159 | Frame { |
| 160 | pc: self.pc, |
| 161 | fp: self.fp, |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | /// Returns whether the cursor is "done", i.e., no other frame is |
| 166 | /// available in this activation. |
no outgoing calls
no test coverage detected