(
compiler: string,
options: string[],
inputFilename: string,
execOptions: ExecutionOptionsWithEnv,
)
| 65 | } |
| 66 | |
| 67 | override buildExecutable( |
| 68 | compiler: string, |
| 69 | options: string[], |
| 70 | inputFilename: string, |
| 71 | execOptions: ExecutionOptionsWithEnv, |
| 72 | ) { |
| 73 | options = options.filter(param => param !== '-c'); |
| 74 | |
| 75 | return this.runCompiler(compiler, options, inputFilename, execOptions); |
| 76 | } |
| 77 | |
| 78 | override getArgumentParserClass() { |
| 79 | return ClangParser; |
no test coverage detected