(value)
| 1149 | return this.tokens.matchAnyToken(...tokens); |
| 1150 | } |
| 1151 | matchOpToken(value) { |
| 1152 | return this.tokens.matchOpToken(value); |
| 1153 | } |
| 1154 | requireTokenType(...types) { |
| 1155 | var token = this.matchTokenType(...types); |
| 1156 | if (token) return token; |
no test coverage detected