()
| 727 | } |
| 728 | |
| 729 | private scanDigits(): string { |
| 730 | const start = this.#offset; |
| 731 | while (isDigit(this.#ch)) { |
| 732 | this.advance(); |
| 733 | } |
| 734 | return this.#text.substring(start, this.#offset); |
| 735 | } |
| 736 | |
| 737 | private scanNumber() { |
| 738 | const start = this.#offset; |
no test coverage detected