(child: ts.JsxChild)
| 625 | } |
| 626 | |
| 627 | private isEmptyJsxExpression(child: ts.JsxChild): boolean { |
| 628 | if (!ts.isJsxExpression(child)) { |
| 629 | return false; |
| 630 | } |
| 631 | |
| 632 | if (child.expression) { |
| 633 | return false; |
| 634 | } |
| 635 | |
| 636 | return true; |
| 637 | } |
| 638 | |
| 639 | private ensureImplicitSlottedNotUsedWithExplicit( |
| 640 | node: ts.Node, |
no outgoing calls
no test coverage detected