(state)
| 20480 | } |
| 20481 | for (let i = 0; i < argString.length; i++) { |
| 20482 | const c = argString.charAt(i); |
| 20483 | if (c === '"') { |
| 20484 | if (!escaped) { |
| 20485 | inQuotes = !inQuotes; |
| 20486 | } else { |
| 20487 | append(c); |
| 20488 | } |
| 20489 | continue; |
| 20490 | } |
| 20491 | if (c === "\\" && escaped) { |
| 20492 | append(c); |
| 20493 | continue; |
| 20494 | } |
nothing calls this directly
no test coverage detected