(compiler)
| 75 | let ce: CompilationEnvironment; |
| 76 | |
| 77 | function createCompiler(compiler) { |
| 78 | if (ce === undefined) { |
| 79 | ce = makeCompilationEnvironment({languages}); |
| 80 | } |
| 81 | |
| 82 | const info = { |
| 83 | lang: languages['c++'].id, |
| 84 | envVars: [], |
| 85 | }; |
| 86 | |
| 87 | return new compiler(info, ce); |
| 88 | } |
| 89 | |
| 90 | if (process.platform === 'linux' && child_process.execSync('uname -a').toString().includes('Microsoft')) { |
| 91 | // WSL |
no test coverage detected