Is the inner body done running?
(&self)
| 293 | |
| 294 | /// Is the inner body done running? |
| 295 | pub fn is_complete(&self) -> bool { |
| 296 | match self.state { |
| 297 | DebuggeeState::Complete => true, |
| 298 | _ => false, |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | /// Get the Engine associated with the debuggee. |
| 303 | pub fn engine(&self) -> &Engine { |