Returns whether the cursor is "done", i.e., no other frame is available in this activation.
(&self)
| 165 | /// Returns whether the cursor is "done", i.e., no other frame is |
| 166 | /// available in this activation. |
| 167 | pub fn done(&self) -> bool { |
| 168 | self.fp == self.trampoline_fp |
| 169 | } |
| 170 | |
| 171 | /// Move to the next frame in this activation, if any. |
| 172 | /// |