()
| 9259 | } |
| 9260 | |
| 9261 | function parseJSXAttributeName() { |
| 9262 | if (lookahead2().value === ':') { |
| 9263 | return parseJSXNamespacedName(); |
| 9264 | } |
| 9265 | |
| 9266 | return parseJSXIdentifier(); |
| 9267 | } |
| 9268 | |
| 9269 | function parseJSXAttributeValue() { |
| 9270 | var value, marker; |
no test coverage detected