* Move position to next
(count: number = 1)
| 79 | * Move position to next |
| 80 | */ |
| 81 | next(count: number = 1) { |
| 82 | this.#position += count; |
| 83 | } |
| 84 | |
| 85 | skipWhitespaces() { |
| 86 | while (this.#whitespace.test(this.char()) && !this.eof()) { |
no outgoing calls
no test coverage detected