(value: string)
| 130 | } |
| 131 | |
| 132 | match(value: string) { |
| 133 | if (this.end()) return false; |
| 134 | return this.read().toLowerCase() === value.toLowerCase(); |
| 135 | } |
| 136 | |
| 137 | matchTokens(values: string[]) { |
| 138 | return values.some((v) => this.read().toLowerCase() === v.toLowerCase()); |
no test coverage detected