(compiler: string, options: string[], inputFilename: string, execOptions: ExecutionOptionsWithEnv)
| 2043 | } |
| 2044 | |
| 2045 | buildExecutable(compiler: string, options: string[], inputFilename: string, execOptions: ExecutionOptionsWithEnv) { |
| 2046 | // default implementation, but should be overridden by compilers |
| 2047 | return this.runCompiler(compiler, options, inputFilename, execOptions, {execute: true, binary: true}); |
| 2048 | } |
| 2049 | |
| 2050 | protected maskPathsInArgumentsForUser(args: string[]): string[] { |
| 2051 | const maskedArgs: string[] = []; |
no test coverage detected