(fileName: string)
| 147 | } |
| 148 | |
| 149 | async emitFile(fileName: string): Promise<EmitResult> { |
| 150 | return this.processAndCacheRequest(fileName, CacheKey.emitFile, (workspace, fileName) => |
| 151 | workspace.emitFile(fileName), |
| 152 | ); |
| 153 | } |
| 154 | |
| 155 | async getDiagnostics(fileName: string): Promise<GetDiagnosticsResult> { |
| 156 | return this.processRequest(fileName, CacheKey.getDiagnostics, (workspace, fileName) => |
nothing calls this directly
no test coverage detected