(&mut self, name: &str, args: Value)
| 44 | } |
| 45 | |
| 46 | pub async fn call_tool(&mut self, name: &str, args: Value) -> Result<crate::tools::ToolResult> { |
| 47 | let mut analyzer = self.analyzer.lock().await; |
| 48 | execute_tool(name, args, &mut analyzer).await |
| 49 | } |
| 50 | |
| 51 | #[tool(description = "Find the definition of a symbol at a given position")] |
| 52 | async fn find_definition( |
nothing calls this directly
no test coverage detected