()
| 440 | } |
| 441 | |
| 442 | parseJSXSpreadAttribute(): JSXNode.JSXSpreadAttribute { |
| 443 | const node = this.createJSXNode(); |
| 444 | this.expectJSX('{'); |
| 445 | this.expectJSX('...'); |
| 446 | |
| 447 | this.finishJSX(); |
| 448 | const argument = this.parseAssignmentExpression(); |
| 449 | this.reenterJSX(); |
| 450 | |
| 451 | return this.finalize(node, new JSXNode.JSXSpreadAttribute(argument)); |
| 452 | } |
| 453 | |
| 454 | parseJSXAttributes(): JSXNode.JSXElementAttribute[] { |
| 455 | const attributes: JSXNode.JSXElementAttribute[] = []; |
no test coverage detected