(value)
| 1138 | return this.tokens.consumeWhitespace(); |
| 1139 | } |
| 1140 | requireOpToken(value) { |
| 1141 | var token = this.matchOpToken(value); |
| 1142 | if (token) return token; |
| 1143 | this.raiseExpected(value); |
| 1144 | } |
| 1145 | matchAnyOpToken(...ops) { |
| 1146 | return this.tokens.matchAnyOpToken(...ops); |
| 1147 | } |
no test coverage detected