(uri: string)
| 235 | // ======================================================================== |
| 236 | |
| 237 | #getFolderName(uri: string): string { |
| 238 | const parts = uri.replace(/\/$/, "").split("/"); |
| 239 | return parts[parts.length - 1] || uri; |
| 240 | } |
| 241 | |
| 242 | #sendNotification(method: string, params: unknown): void { |
| 243 | // Access the client's transport to send raw JSON-RPC notification |
no outgoing calls
no test coverage detected