MCPcopy Index your code
hub / github.com/colbymchenry/codegraph / mkClass

Function mkClass

__tests__/frameworks.test.ts:532–546  ·  view source on GitHub ↗
(name: string, filePath: string, startLine: number, endLine: number)

Source from the content-addressed store, hash-verified

530
531describe('nestjsResolver.postExtract — RouterModule', () => {
532 function mkClass(name: string, filePath: string, startLine: number, endLine: number): Node {
533 return {
534 id: `class:${filePath}:${startLine}:${name}`,
535 kind: 'class',
536 name,
537 qualifiedName: `${filePath}::${name}`,
538 filePath,
539 language: 'typescript',
540 startLine,
541 endLine,
542 startColumn: 0,
543 endColumn: 0,
544 updatedAt: 0,
545 };
546 }
547
548 function mkRoute(
549 filePath: string,

Callers 1

frameworks.test.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected