(value)
| 337 | // If not, an exception will be thrown. |
| 338 | |
| 339 | expectJSX(value) { |
| 340 | const token = this.nextJSXToken(); |
| 341 | if (token.type !== Token.Punctuator || token.value !== value) { |
| 342 | this.throwUnexpectedToken(token); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | // Return true if the next JSX token matches the specified punctuator. |
| 347 |
no test coverage detected