(fileName: string)
| 134 | } |
| 135 | |
| 136 | getContents(fileName: string): string { |
| 137 | this.assertExists(fileName); |
| 138 | const modulePath = this.fs.resolve(this.outDir, fileName); |
| 139 | return this.fs.readFile(modulePath); |
| 140 | } |
| 141 | |
| 142 | enableMultipleCompilations(): void { |
| 143 | this.changedResources = new Set(); |
no test coverage detected