()
| 250 | return this.#source.charAt(this.#position); |
| 251 | } |
| 252 | #nextChar() { |
| 253 | return this.#source.charAt(this.#position + 1); |
| 254 | } |
| 255 | #charAt(offset = 1) { |
| 256 | return this.#source.charAt(this.#position + offset); |
| 257 | } |
no outgoing calls
no test coverage detected