(str: string)
| 130 | } |
| 131 | |
| 132 | function ensureUnquoted(str: string): string { |
| 133 | if (/(^".*"$)|(^'.*'$)/.test(str)) { |
| 134 | return str.substring(1, str.length - 1); |
| 135 | } |
| 136 | return str; |
| 137 | } |
| 138 | |
| 139 | function extractCompilerInfo(compileOutput: string) { |
| 140 | const rxCompArg = /-(I|D)("[^"]+"|[\S]+)/gm; |
no outgoing calls
no test coverage detected