(char: string | undefined)
| 238 | } |
| 239 | |
| 240 | function canPrecedeNewToken(char: string | undefined): boolean { |
| 241 | return char === undefined || /[\s(>,=]/.test(char); |
| 242 | } |
| 243 | |
| 244 | function isBackslashEscaped(string: string, pos: number): boolean { |
| 245 | let escaped = false; |
no outgoing calls
no test coverage detected