MCPcopy Index your code
hub / github.com/modelcontextprotocol/modelcontextprotocol / hasComment

Function hasComment

typedoc.plugin.mjs:64–69  ·  view source on GitHub ↗

* @param {typedoc.DeclarationReflection} member * @returns {boolean}

(member)

Source from the content-addressed store, hash-verified

62 * @returns {boolean}
63 */
64function hasComment(member) {
65 return member.hasComment() || (
66 member.type instanceof typedoc.ReflectionType &&
67 !!member.type.declaration.children?.some((child) => hasComment(child))
68 );
69}
70
71/**
72 * @param {typedoc.ProjectReflection} project

Callers 1

getAnchorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected