(...tokens)
| 1146 | return this.tokens.matchAnyOpToken(...ops); |
| 1147 | } |
| 1148 | matchAnyToken(...tokens) { |
| 1149 | return this.tokens.matchAnyToken(...tokens); |
| 1150 | } |
| 1151 | matchOpToken(value) { |
| 1152 | return this.tokens.matchOpToken(value); |
| 1153 | } |
nothing calls this directly
no test coverage detected