(uri: URI)
| 131 | } |
| 132 | |
| 133 | async readDocument(uri: URI) { |
| 134 | const documents = this.documents[uri.scheme]; |
| 135 | if (!documents) { |
| 136 | throw new Error(`Unsupported scheme: ${uri.toString()}`); |
| 137 | } |
| 138 | return documents.readDocument(uri); |
| 139 | } |
| 140 | |
| 141 | async applyEdits(uri: URI, edits: Edit[], content: string) { |
| 142 | const documents = this.documents[uri.scheme]; |
nothing calls this directly
no test coverage detected