(compileOutput: string)
| 160 | } |
| 161 | |
| 162 | function extractCompilerStd(compileOutput: string): string | undefined { |
| 163 | const rxStd = /-std=(\S+)/; |
| 164 | |
| 165 | const stdMatch = compileOutput.match(rxStd); |
| 166 | return stdMatch?.[1]; |
| 167 | } |
| 168 | |
| 169 | function extractCompilerCall(compileOutput: string): string | undefined { |
| 170 | const rxComp = /("[^"]+"|[\S]+)/; |
no outgoing calls
no test coverage detected