(command: string)
| 104 | * heredoc is unterminated. |
| 105 | */ |
| 106 | export function findUnterminatedQuote(command: string): UnterminatedQuote | null { |
| 107 | return scanTopLevelQuotes(command).unterminatedQuote |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Describes a contiguous quoted region found at the top level of a command |
no test coverage detected