(node)
| 14523 | } |
| 14524 | } |
| 14525 | function getSourceFileOfNode(node) { |
| 14526 | while (node && node.kind !== 305 /* SyntaxKind.SourceFile */) { |
| 14527 | node = node.parent; |
| 14528 | } |
| 14529 | return node; |
| 14530 | } |
| 14531 | ts.getSourceFileOfNode = getSourceFileOfNode; |
| 14532 | function getSourceFileOfModule(module) { |
| 14533 | return getSourceFileOfNode(module.valueDeclaration || getNonAugmentationDeclaration(module)); |
no outgoing calls
no test coverage detected
searching dependent graphs…