(args: string[])
| 139 | } |
| 140 | |
| 141 | export function parseCommandLine(args: string[]): ParsedCommandLine { |
| 142 | return updateParsedCommandLine(ts.parseCommandLine(args), args); |
| 143 | } |
| 144 | |
| 145 | function updateParsedCommandLine(parsedCommandLine: ts.ParsedCommandLine, args: string[]): ParsedCommandLine { |
| 146 | for (let i = 0; i < args.length; i++) { |
no test coverage detected