(range, currentSourceFile)
| 108037 | } |
| 108038 | ts.getDeclarationDiagnostics = getDeclarationDiagnostics; |
| 108039 | function hasInternalAnnotation(range, currentSourceFile) { |
| 108040 | var comment = currentSourceFile.text.substring(range.pos, range.end); |
| 108041 | return ts.stringContains(comment, "@internal"); |
| 108042 | } |
| 108043 | function isInternalDeclaration(node, currentSourceFile) { |
| 108044 | var parseTreeNode = ts.getParseTreeNode(node); |
| 108045 | if (parseTreeNode && parseTreeNode.kind === 164 /* SyntaxKind.Parameter */) { |
no outgoing calls
no test coverage detected
searching dependent graphs…