(sourceFile, node, includeTrivia)
| 14755 | } |
| 14756 | ts.getNonDecoratorTokenPosOfNode = getNonDecoratorTokenPosOfNode; |
| 14757 | function getSourceTextOfNodeFromSourceFile(sourceFile, node, includeTrivia) { |
| 14758 | if (includeTrivia === void 0) { includeTrivia = false; } |
| 14759 | return getTextOfNodeFromSourceText(sourceFile.text, node, includeTrivia); |
| 14760 | } |
| 14761 | ts.getSourceTextOfNodeFromSourceFile = getSourceTextOfNodeFromSourceFile; |
| 14762 | function isJSDocTypeExpressionOrChild(node) { |
| 14763 | return !!ts.findAncestor(node, ts.isJSDocTypeExpression); |
no test coverage detected
searching dependent graphs…