(&mut self, self_: Resource<Frame>, d: Resource<Debuggee>)
| 870 | } |
| 871 | |
| 872 | async fn get_pc(&mut self, self_: Resource<Frame>, d: Resource<Debuggee>) -> Result<u32> { |
| 873 | let frame = self.get(&self_)?.0.clone(); |
| 874 | let d = debugger(self, &d)?; |
| 875 | let (_, pc) = d.frame_func_and_pc(frame).await?; |
| 876 | Ok(pc) |
| 877 | } |
| 878 | |
| 879 | async fn get_locals( |
| 880 | &mut self, |