(node: ts.Node)
| 2670 | diagnostics: Array<JSDocModelDiagnostic>, |
| 2671 | linkContext: { readonly checker: ts.TypeChecker; readonly entry: ProgramCacheEntry; readonly cwd: string } |
| 2672 | ) { |
| 2673 | if (!hasInlineLink(block)) return |
| 2674 | for (const link of malformedInlineLinks(block)) { |
| 2675 | diagnostics.push({ ...diagnostic("malformed-link", `Malformed JSDoc inline link: ${link}`), range: block.range }) |
| 2676 | } |
| 2677 | for (const link of collectJSDocLinks(sourceFile, block)) { |
| 2678 | const text = link.getText(sourceFile) |
| 2679 | const target = extractInlineLinkTarget(text) |
no outgoing calls
no test coverage detected
searching dependent graphs…