(value)
| 1148 | return this.tokens.consumeWhitespace(); |
| 1149 | } |
| 1150 | requireOpToken(value) { |
| 1151 | var token = this.matchOpToken(value); |
| 1152 | if (token) return token; |
| 1153 | this.raiseExpected(value); |
| 1154 | } |
| 1155 | matchAnyOpToken(...ops) { |
| 1156 | return this.tokens.matchAnyOpToken(...ops); |
| 1157 | } |
no test coverage detected