(input, context)
| 208 | return { result: true } |
| 209 | }, |
| 210 | async checkPermissions(input, context): Promise<PermissionDecision> { |
| 211 | const appState = context.getAppState() |
| 212 | return checkReadPermissionForTool( |
| 213 | LSPTool, |
| 214 | input, |
| 215 | appState.toolPermissionContext, |
| 216 | ) |
| 217 | }, |
| 218 | async prompt() { |
| 219 | return DESCRIPTION |
| 220 | }, |
nothing calls this directly
no test coverage detected