(value)
| 1159 | return this.tokens.matchAnyToken(...tokens); |
| 1160 | } |
| 1161 | matchOpToken(value) { |
| 1162 | return this.tokens.matchOpToken(value); |
| 1163 | } |
| 1164 | requireTokenType(...types) { |
| 1165 | var token = this.matchTokenType(...types); |
| 1166 | if (token) return token; |
no test coverage detected