* Position reached EOF or not
()
| 116 | * Position reached EOF or not |
| 117 | */ |
| 118 | eof() { |
| 119 | return this.#position >= this.#source.length; |
| 120 | } |
| 121 | |
| 122 | isCurrentCharEOL() { |
| 123 | return this.char() === "\n" || this.startsWith("\r\n"); |
no outgoing calls
no test coverage detected