()
| 140 | } |
| 141 | // ----- Whitespace ----- |
| 142 | lastWhitespace() { |
| 143 | var last = this.#consumed.at(-1); |
| 144 | return last && last.type === "WHITESPACE" ? last.value : ""; |
| 145 | } |
| 146 | // ----- Follow set management ----- |
| 147 | pushFollow(str) { |
| 148 | this.#follows.push(str); |
no outgoing calls
no test coverage detected