()
| 424 | } |
| 425 | |
| 426 | parseJSXAttributeValue(): JSXNode.JSXAttributeValue { |
| 427 | return this.matchJSX('{') ? this.parseJSXExpressionAttribute() : |
| 428 | this.matchJSX('<') ? this.parseJSXElement() : this.parseJSXStringLiteralAttribute(); |
| 429 | } |
| 430 | |
| 431 | parseJSXNameValueAttribute(): JSXNode.JSXAttribute { |
| 432 | const node = this.createJSXNode(); |
no test coverage detected