()
| 9248 | } |
| 9249 | |
| 9250 | function parseJSXElementName() { |
| 9251 | if (lookahead2().value === ':') { |
| 9252 | return parseJSXNamespacedName(); |
| 9253 | } |
| 9254 | if (lookahead2().value === '.') { |
| 9255 | return parseJSXMemberExpression(); |
| 9256 | } |
| 9257 | |
| 9258 | return parseJSXIdentifier(); |
| 9259 | } |
| 9260 | |
| 9261 | function parseJSXAttributeName() { |
| 9262 | if (lookahead2().value === ':') { |
no test coverage detected