(source: string, filters: CompilerOutputOptions)
| 3845 | } |
| 3846 | |
| 3847 | preProcess(source: string, filters: CompilerOutputOptions): string { |
| 3848 | if (filters.binary && !this.stubRe.test(source)) { |
| 3849 | source += `\n${this.stubText}\n`; |
| 3850 | } |
| 3851 | return source; |
| 3852 | } |
| 3853 | |
| 3854 | async postProcess( |
| 3855 | result: CompilationResult, |