(fileName: string)
| 128 | } |
| 129 | |
| 130 | getContents(fileName: string): string { |
| 131 | this.assertExists(fileName); |
| 132 | const modulePath = this.fs.resolve(this.outDir, fileName); |
| 133 | return this.fs.readFile(modulePath); |
| 134 | } |
| 135 | |
| 136 | enableMultipleCompilations(): void { |
| 137 | this.changedResources = new Set(); |
no test coverage detected