(value)
| 346 | // Return true if the next JSX token matches the specified punctuator. |
| 347 | |
| 348 | matchJSX(value) { |
| 349 | const next = this.peekJSXToken(); |
| 350 | return next.type === Token.Punctuator && next.value === value; |
| 351 | } |
| 352 | |
| 353 | parseJSXIdentifier(): JSXNode.JSXIdentifier { |
| 354 | const node = this.createJSXNode(); |
no test coverage detected