(uri)
| 291 | this.theme = theme; |
| 292 | } |
| 293 | async readFile(uri) { |
| 294 | const file = this.theme[uri]; |
| 295 | if (!file) throw new Error(`File not found: ${uri}`); |
| 296 | return file; |
| 297 | } |
| 298 | async readDirectory() { |
| 299 | return []; |
| 300 | } |
no outgoing calls
no test coverage detected