(fileName: string)
| 279 | } |
| 280 | |
| 281 | async emitFile(fileName: string): Promise<EmitResult> { |
| 282 | return this.doEmitFile(fileName, undefined, undefined); |
| 283 | } |
| 284 | |
| 285 | transformDiagnostic(project: Project, original: ts.DiagnosticWithLocation | ts.Diagnostic): Diagnostic { |
| 286 | const text = project.formatDiagnostic(original); |
nothing calls this directly
no test coverage detected