MCPcopy Create free account
hub / github.com/effect-app/libs / parseableSignature

Function parseableSignature

repos/effect/packages/tools/jsdocs/src/Jsdocs.ts:2691–2702  ·  view source on GitHub ↗
(cwd: string, text: string)

Source from the content-addressed store, hash-verified

2689 range: [link.pos, link.end]
2690 })
2691 }
2692 }
2693 for (const link of collectJSDocSeeLinks(sourceFile, block)) {
2694 const text = link.getText(sourceFile)
2695 const target = extractInlineLinkTarget(text)
2696 if (target === "" || urlRegex.test(target)) continue
2697 const symbol = resolveJSDocLinkSymbol(link, linkContext.checker)
2698 if (symbol === undefined) continue
2699 if (undocumentedSeeLinkTarget(symbol, linkContext.checker, linkContext.cwd) !== undefined) {
2700 diagnostics.push({
2701 ...diagnostic("undocumented-see-target", `@see link target must have public JSDoc: ${text}`),
2702 range: [link.pos, link.end]
2703 })
2704 }
2705 }

Callers 1

functionSignatureFunction · 0.85

Calls 2

normalizeSignatureFunction · 0.85
displaySignatureFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…