(input: string)
| 183 | } |
| 184 | |
| 185 | const parseKey = (input: string): string => { |
| 186 | const value = parseScalar(input) |
| 187 | return value === null || value === undefined ? "" : String(value) |
| 188 | } |
| 189 | |
| 190 | class FlowParser { |
| 191 | private readonly input: string |
no test coverage detected