(
compiler: string,
args: string[],
options: ExecutionOptionsWithEnv,
)
| 435 | } |
| 436 | |
| 437 | protected getCompilerCacheKey( |
| 438 | compiler: string, |
| 439 | args: string[], |
| 440 | options: ExecutionOptionsWithEnv, |
| 441 | ): CompilationCacheKey { |
| 442 | return {mtime: this.mtime, compiler, args, options}; |
| 443 | } |
| 444 | |
| 445 | public async execCompilerCached( |
| 446 | compiler: string, |
no outgoing calls
no test coverage detected