()
| 18 | eol() {return this.pos >= this.string.length} |
| 19 | sol() {return this.pos == this.lineStart} |
| 20 | peek() {return this.string.charAt(this.pos) || undefined} |
| 21 | next() { |
| 22 | if (this.pos < this.string.length) |
| 23 | return this.string.charAt(this.pos++) |
no outgoing calls
no test coverage detected