(filepath: string, args: string[], execOptions: ExecutionOptions)
| 430 | } |
| 431 | |
| 432 | async exec(filepath: string, args: string[], execOptions: ExecutionOptions) { |
| 433 | // Here only so can be overridden by compiler implementations. |
| 434 | return await exec.execute(filepath, args, execOptions); |
| 435 | } |
| 436 | |
| 437 | protected getCompilerCacheKey( |
| 438 | compiler: string, |
no test coverage detected