(&self, fn_def_id: FunctionId)
| 288 | } |
| 289 | |
| 290 | pub fn function_source(&self, fn_def_id: FunctionId) -> Option<String> { |
| 291 | self.function_to_ast(fn_def_id) |
| 292 | .map(|func| func.value.syntax().text().to_string()) |
| 293 | } |
| 294 | |
| 295 | pub fn reload(&mut self, fn_def_id: FunctionId) { |
| 296 | if let Some(node) = self.function_to_ast(fn_def_id) { |
no test coverage detected