(uri: string)
| 98 | } |
| 99 | |
| 100 | #nextFileVersion(uri: string): number { |
| 101 | const current = this.#versions[uri] ?? -1; |
| 102 | const next = current + 1; |
| 103 | this.#versions[uri] = next; |
| 104 | return next; |
| 105 | } |
| 106 | |
| 107 | #resolveLanguageIdForUri(uri: string): string { |
| 108 | if (typeof this.options.resolveLanguageId === "function") { |
no outgoing calls
no test coverage detected