(path: string, data: string)
| 76 | return virtualFs.fileBufferToString(data); |
| 77 | }, |
| 78 | async writeFile(path: string, data: string): Promise<void> { |
| 79 | return tree.overwrite(path, data); |
| 80 | }, |
| 81 | async isDirectory(path: string): Promise<boolean> { |
| 82 | // Approximate a directory check. |
| 83 | // We don't need to consider empty directories and hence this is a good enough approach. |
nothing calls this directly
no test coverage detected
searching dependent graphs…