(result, postProcesses: string[], outputFilename: string, maxSize: number)
| 3840 | } |
| 3841 | |
| 3842 | async execPostProcess(result, postProcesses: string[], outputFilename: string, maxSize: number) { |
| 3843 | const postCommand = `cat "${outputFilename}" | ${postProcesses.join(' | ')}`; |
| 3844 | return this.handlePostProcessResult(result, await this.exec('bash', ['-c', postCommand], {maxOutput: maxSize})); |
| 3845 | } |
| 3846 | |
| 3847 | preProcess(source: string, filters: CompilerOutputOptions): string { |
| 3848 | if (filters.binary && !this.stubRe.test(source)) { |
no test coverage detected