(&mut self)
| 316 | } |
| 317 | |
| 318 | pub fn get_new_visitor(&mut self) -> Result<Visitor> { |
| 319 | let ast = self.update_ast()?; |
| 320 | let visitor = Visitor::new(ast); |
| 321 | Ok(visitor) |
| 322 | } |
| 323 | |
| 324 | fn change_fd_name(&mut self, change_to_name: &str, change_to_ty: &str) -> Result<()> { |
| 325 | let fd_name = self.main.clone(); |
no test coverage detected