(thisArg, _arguments, P, generator)
| 20493 | continue; |
| 20494 | } |
| 20495 | if (c === "\\" && inQuotes) { |
| 20496 | escaped = true; |
| 20497 | continue; |
| 20498 | } |
| 20499 | if (c === " " && !inQuotes) { |
| 20500 | if (arg.length > 0) { |
| 20501 | args.push(arg); |
| 20502 | arg = ""; |
| 20503 | } |
| 20504 | continue; |
| 20505 | } |
| 20506 | append(c); |
| 20507 | } |
| 20508 | if (arg.length > 0) { |
| 20509 | args.push(arg.trim()); |
| 20510 | } |
| 20511 | return args; |
| 20512 | } |
| 20513 | var ExecState = class _ExecState extends events.EventEmitter { |
| 20514 | constructor(options, toolPath) { |
| 20515 | super(); |
| 20516 | this.processClosed = false; |
| 20517 | this.processError = ""; |
| 20518 | this.processExitCode = 0; |
| 20519 | this.processExited = false; |
| 20520 | this.processStderr = false; |
| 20521 | this.delay = 1e4; |
| 20522 | this.done = false; |
| 20523 | this.timeout = null; |
| 20524 | if (!toolPath) { |
no test coverage detected