(...tokens)
| 1154 | return this.tokens.matchAnyOpToken(...ops); |
| 1155 | } |
| 1156 | matchAnyToken(...tokens) { |
| 1157 | return this.tokens.matchAnyToken(...tokens); |
| 1158 | } |
| 1159 | matchOpToken(value) { |
| 1160 | return this.tokens.matchOpToken(value); |
| 1161 | } |
nothing calls this directly
no test coverage detected