(tokens, source)
| 14 | #follows = []; |
| 15 | source; |
| 16 | constructor(tokens, source) { |
| 17 | this.#tokens = tokens; |
| 18 | this.source = source; |
| 19 | this.consumeWhitespace(); |
| 20 | } |
| 21 | get list() { |
| 22 | return this.#tokens; |
| 23 | } |
nothing calls this directly
no test coverage detected