(state: ParserState, message: string)
| 235 | } |
| 236 | |
| 237 | function throwError (state: ParserState, message: string): never { |
| 238 | throwErrorAt(state.input.slice(0, state.length), state.position, message, state.filename) |
| 239 | } |
| 240 | |
| 241 | function isEol (c: number) { |
| 242 | return c === 0x0A/* LF */ || c === 0x0D/* CR */ |
no test coverage detected
searching dependent graphs…