Parser state holding input string and current position.
| 425 | |
| 426 | /** Parser state holding input string and current position. */ |
| 427 | interface ParserState { |
| 428 | input: string; |
| 429 | pos: number; |
| 430 | } |
| 431 | |
| 432 | // Character code constants for ASCII ranges |
| 433 | const CHAR_CODE_0 = 48; // '0' |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…