(uri: string)
| 69 | } |
| 70 | |
| 71 | function getFilePath(uri: string) { |
| 72 | if (!uri.startsWith("file://")) return |
| 73 | return Filesystem.normalizePath(fileURLToPath(uri)) |
| 74 | } |
| 75 | |
| 76 | function getSyncKind(capabilities?: ServerCapabilities) { |
| 77 | if (!capabilities) return |
no outgoing calls
no test coverage detected