()
| 106 | } |
| 107 | |
| 108 | clear() { |
| 109 | for (const [fileName, watcher] of this.configFileWatchers) { |
| 110 | this.configOverwrites.delete(fileName); |
| 111 | watcher.changed(); |
| 112 | } |
| 113 | this.configOverwrites.clear(); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | function createHost(configFileFs: MockConfigFileFs): ts.server.ServerHost { |
no test coverage detected