(
tags: T,
node: ts.Node,
block: JSDocBlock,
linkContext: { readonly checker: ts.TypeChecker; readonly entry: ProgramCacheEntry; readonly cwd: string }
)
| 1797 | } |
| 1798 | |
| 1799 | function attachSeeLinkSymbols<T extends ParsedDeclarationTags | ParsedNamespaceTags | ParsedMemberTags>( |
| 1800 | tags: T, |
| 1801 | node: ts.Node, |
| 1802 | block: JSDocBlock, |
| 1803 | linkContext: { readonly checker: ts.TypeChecker; readonly entry: ProgramCacheEntry; readonly cwd: string } |
| 1804 | ): T { |
| 1805 | return attachSeeLinkSymbolsFromSourceFile(tags, node.getSourceFile(), block, linkContext) |
| 1806 | } |
| 1807 | |
| 1808 | /** |
| 1809 | * JSDoc diagnostic paired with its source range. |
no test coverage detected