(node)
| 15473 | } |
| 15474 | ts.isCustomPrologue = isCustomPrologue; |
| 15475 | function isHoistedFunction(node) { |
| 15476 | return isCustomPrologue(node) |
| 15477 | && ts.isFunctionDeclaration(node); |
| 15478 | } |
| 15479 | ts.isHoistedFunction = isHoistedFunction; |
| 15480 | function isHoistedVariable(node) { |
| 15481 | return ts.isIdentifier(node.name) |
nothing calls this directly
no test coverage detected