(filePath: string)
| 63 | } |
| 64 | |
| 65 | getFile(filePath: string) { |
| 66 | const dirent = this.files.get()[filePath]; |
| 67 | |
| 68 | if (dirent?.type !== 'file') { |
| 69 | return undefined; |
| 70 | } |
| 71 | |
| 72 | return dirent; |
| 73 | } |
| 74 | |
| 75 | getFileModifications() { |
| 76 | return computeFileModifications(this.files.get(), this.#modifiedFiles); |
no outgoing calls
no test coverage detected