(node)
| 15482 | && !node.initializer; |
| 15483 | } |
| 15484 | function isHoistedVariableStatement(node) { |
| 15485 | return isCustomPrologue(node) |
| 15486 | && ts.isVariableStatement(node) |
| 15487 | && ts.every(node.declarationList.declarations, isHoistedVariable); |
| 15488 | } |
| 15489 | ts.isHoistedVariableStatement = isHoistedVariableStatement; |
| 15490 | function getLeadingCommentRangesOfNode(node, sourceFileOfNode) { |
| 15491 | return node.kind !== 11 /* SyntaxKind.JsxText */ ? ts.getLeadingCommentRanges(sourceFileOfNode.text, node.pos) : undefined; |
nothing calls this directly
no test coverage detected