(path: string)
| 87 | } |
| 88 | |
| 89 | delete(path: string): void { |
| 90 | const normalizedPath = this.normalizePath(path); |
| 91 | const file = this.files.get(normalizedPath); |
| 92 | if (file) { |
| 93 | this.files.delete(normalizedPath); |
| 94 | this.emitter.emit('delete', file); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | rename(oldPath: string, newPath: string): void { |
| 99 | const oldNormalized = this.normalizePath(oldPath); |
nothing calls this directly
no test coverage detected