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