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