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