(node)
| 161674 | } |
| 161675 | } |
| 161676 | function isInJSXContent(node) { |
| 161677 | return isStringLiteralJsxAttribute(node) || |
| 161678 | (ts.isJsxElement(node) || ts.isJsxSelfClosingElement(node) || ts.isJsxFragment(node)) && (ts.isJsxElement(node.parent) || ts.isJsxFragment(node.parent)); |
| 161679 | } |
| 161680 | function isStringLiteralJsxAttribute(node) { |
| 161681 | return ts.isStringLiteral(node) && node.parent && ts.isJsxAttribute(node.parent); |
| 161682 | } |
no test coverage detected
searching dependent graphs…