Function
createClassSymbol
(classDef: DenoDocNode['classDef'])
Source from the content-addressed store, hash-verified
| 9 | // ============================================================================= |
| 10 | |
| 11 | function 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 | |
| 24 | function createFunctionSymbol(name: string, jsDoc?: DenoDocNode['jsDoc']): MergedSymbol { |
| 25 | const node: DenoDocNode = { |
Tested by
no test coverage detected