(uri: string)
| 166 | } |
| 167 | |
| 168 | getFile(uri: string): AcodeWorkspaceFile | null { |
| 169 | return this.#getFileEntry(uri); |
| 170 | } |
| 171 | |
| 172 | requestFile(uri: string): Promise<AcodeWorkspaceFile | null> { |
| 173 | return Promise.resolve(this.#getFileEntry(uri)); |
nothing calls this directly
no test coverage detected