MCPcopy Index your code
hub / github.com/npmx-dev/npmx.dev / createClassSymbol

Function createClassSymbol

test/unit/server/utils/docs/render.spec.ts:11–22  ·  view source on GitHub ↗
(classDef: DenoDocNode['classDef'])

Source from the content-addressed store, hash-verified

9// =============================================================================
10
11function createClassSymbol(classDef: DenoDocNode['classDef']): MergedSymbol {
12 const node: DenoDocNode = {
13 name: 'TestClass',
14 kind: 'class',
15 classDef,
16 }
17 return {
18 name: 'TestClass',
19 kind: 'class',
20 nodes: [node],
21 }
22}
23
24function createFunctionSymbol(name: string, jsDoc?: DenoDocNode['jsDoc']): MergedSymbol {
25 const node: DenoDocNode = {

Callers 1

render.spec.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected