()
| 298 | return i >= len; |
| 299 | } |
| 300 | function currentCodePoint(): number { |
| 301 | return defined(s.codePointAt(i)); |
| 302 | } |
| 303 | |
| 304 | function skipWhile(p: (codePoint: number) => boolean): void { |
| 305 | while (!atEnd()) { |
no test coverage detected
searching dependent graphs…