(compilerExe: string | null, compilerOptions?: string)
| 48 | } |
| 49 | |
| 50 | export function getToolchainPath(compilerExe: string | null, compilerOptions?: string): string | undefined { |
| 51 | const options = compilerOptions ? splitArguments(compilerOptions) : []; |
| 52 | return getToolchainPathWithOptionsArr(compilerExe, options); |
| 53 | } |
| 54 | |
| 55 | export function removeToolchainArg(compilerOptions: string[]): string[] { |
| 56 | return compilerOptions.filter( |
no test coverage detected